// -*- mode: c++; c-basic-offset: 2; -*- #ifndef CHARACTER_HH #define CHARACTER_HH #include class Character { public: static bool isspace(std::string const& str, size_t pos); static bool isseparator(std::string const& str, size_t pos); private: ~Character() {} Character() {} }; #endif // CHARACTER_HH