git-svn-id: https://websvn.glenux.net/svn/Upoc/cryptaffinity/trunk@1175 eaee96b3-f302-0410-b096-c6cfd47f7835
21 lines
399 B
C++
21 lines
399 B
C++
#ifndef _LIBCRYPAFINITY_ALPHABET_HH
|
|
#define _LIBCRYPAFINITY_ALPHABET_HH
|
|
|
|
|
|
#include "cryptafinity_global.hh"
|
|
#include "cryptafinity_iface.hh"
|
|
|
|
namespace LibCryptAfinity {
|
|
class ReverseAlphabet: public std::map<std::string, int> {
|
|
};
|
|
|
|
class Alphabet : public std::vector<std::string> {
|
|
public:
|
|
Alphabet();
|
|
Alphabet(std::string alphaString);
|
|
ReverseAlphabet getReverse();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|