diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-03-26 13:38:53 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-03-26 13:38:53 +0100 |
| commit | f0ae840c6cd876d67a451f824cc1b52974072f41 (patch) | |
| tree | 4c487228e1f5e153f506485faa7a490dc5281c4d /src/crypt/cryptclasscaesar.h | |
| parent | a2f1b90ba22e59dd19065ac13bd4cd018d58a0ae (diff) | |
| download | IT-Sicherheit-f0ae840c6cd876d67a451f824cc1b52974072f41.tar.gz IT-Sicherheit-f0ae840c6cd876d67a451f824cc1b52974072f41.zip | |
Creates the CryptClassCaesar and connects it
Diffstat (limited to 'src/crypt/cryptclasscaesar.h')
| -rw-r--r-- | src/crypt/cryptclasscaesar.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/crypt/cryptclasscaesar.h b/src/crypt/cryptclasscaesar.h new file mode 100644 index 0000000..6262d9e --- /dev/null +++ b/src/crypt/cryptclasscaesar.h @@ -0,0 +1,19 @@ +#ifndef CRYPTCLASSCAESAR_H +#define CRYPTCLASSCAESAR_H + +#include "cryptclassbase.h" +#include <QMap> + +class CryptClassCaesar : public CryptClassBase +{ +public: + CryptClassCaesar(); + ~CryptClassCaesar(); + + // CryptClassBase interface +public: + void encrypt(); + void decrypt(); +}; + +#endif // CRYPTCLASSCAESAR_H |
