20 lines
327 B
C++
20 lines
327 B
C++
#ifndef CAESAR_H
|
|
#define CAESAR_H
|
|
|
|
#include <string>
|
|
|
|
class Caesar {
|
|
public:
|
|
Caesar(int rotation);
|
|
void setRotation(int rotation);
|
|
int getRotation();
|
|
char encryptChar(char toEncrypt);
|
|
std::string encryptString(std::string toEncrypt);
|
|
private:
|
|
int rotation;
|
|
const int MIN = 33;
|
|
const int MAX = 126;
|
|
};
|
|
|
|
#endif
|