#ifndef DANS_SILLY_TYPE #define DANS_SILLY_TYPE #include #include class SillyT{ public: SillyT(); void String(std::string s); std::string String(void) const; void Int(int i); int Int(void) const; bool operator ==(const SillyT & other); bool operator < (const SillyT & other); private: int intVal; std::string stringVal; }; #endif