m2.cryptaffinity/src/lib/key_affine.hh

28 lines
436 B
C++
Raw Normal View History

#ifndef _CRYPTAFINIY_KEYAFINE_HH
#define _CRYPTAFINIY_KEYAFINE_HH
2012-08-14 23:26:24 +00:00
#include "cryptaffinity_global.hh"
#include "cryptaffinity_iface.hh"
#include "key.hh" // declaration
#include "text.hh" // body
2012-08-14 23:26:24 +00:00
namespace LibCryptAffinity {
class KeyAfine : public Key {
private:
int _a;
int _b;
public:
void setCoefA(int i);
void setCoefB(int i);
int getCoefA();
int getCoefB();
std::string toString();
};
}
#endif