Well, I know that this should be a simple question, but for life I can’t understand why I keep receiving this message. I am using eclipse V3.8 on ubuntu linux V13.04
The compilation says: "unit16 has not been declared
#ifndef ENIGMA_2C_H_
#define ENIGMA_2C_H_
class Enigma2C {
public:
static bool checkOptionKey(uint16 option, char *key);
static bool encrypt (char *inString, char *outString);
static bool decrypt (char *inString, char *outString);
};
#endif
source
share