// Smersh // // Douglas Thrift // // $Id$ #ifndef _Person_hpp_ #define _Person_hpp_ #include #include "Smersh.hpp" class Person { private: public: Person(const string& sn = ""); ~Person() {} }; #endif // _Person_hpp_