1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// -*- mode: c++; c-basic-offset: 2; -*- #ifndef CHARACTER_HH #define CHARACTER_HH #include <string> 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