// -*- C++ -*- #ifndef CHSET_H #define CHSET_H #ifdef __GNUG__ #pragma interface #endif #include #include #include "LString.h" /// class CharacterSet { public: /// bool loadFile(string const &); /// string const & getName() const; /// std::pair const encodeString(string const &) const; private: /// string name_; /// typedef std::map Cdef; /// Cdef map_; }; #endif