#ifndef __OTHER_H #define __OTHER_H #include class Other { public: Other(const std::string &strVal); ~Other(); // this is the destructor std::string toString() const; private: std::string strVal; }; #endif // __OTHER_H