// Truck Computer Dooom! // // Douglas Thrift // // $Id$ #ifndef _iconv_hpp_ #define _iconv_hpp_ #include #include namespace IConv { class IConv { ::iconv_t iconv; public: IConv(const std::string &to, const std::string &from); ~IConv(); std::string Convert(const std::string input); }; } #endif//_iconv_hpp_