22 lines
244 B
C++
22 lines
244 B
C++
#ifndef DECRYPTION_H
|
|
#define DECRYPTION_H
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
|
|
#include "Cryption.h"
|
|
|
|
class Decryption : public Cryption
|
|
{
|
|
public:
|
|
|
|
Decryption();
|
|
Decryption(const std::string&);
|
|
|
|
void decryptMessage();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|