m2.cryptaffinity/src/lib/alphabet.hh

22 lines
404 B
C++
Raw Normal View History

2012-08-14 23:26:24 +00:00
#ifndef _LIBCRYPAFFINITY_ALPHABET_HH
#define _LIBCRYPAFFINITY_ALPHABET_HH
2012-08-14 23:26:24 +00:00
#include "cryptaffinity_global.hh"
#include "cryptaffinity_iface.hh"
2012-08-14 23:26:24 +00:00
namespace LibCryptAffinity {
class ReverseAlphabet: public std::map<std::string, int> {
};
class Alphabet : public std::vector<std::string> {
public:
Alphabet();
Alphabet(std::string alphaString);
ReverseAlphabet getReverse();
};
}
#endif