// Feeping Creaturism // // Douglas Thrift // // $Id$ #ifndef _Jargon_hpp_ #define _Jargon_hpp_ #include "FeepingCreaturism.hpp" #include #include class Jargon { private: std::string word, pronunciation, grammar; xml::NodeSet definition; public: Jargon(const std::string& path); // friends: friend std::ostream& operator<<(std::ostream& sout, const Jargon& jargon); }; #endif // _Jargon_hpp_