#ifndef TRINARY #define TRINARY #include const std::string TRINARY_DIGITS{"012"}; std::string IntToTrinary(int number); int TrinaryToInt(std::string number); char IntDigitToTrinary(int d); int TrinaryDigitToInt(char d); #endif