#ifndef SILLY_H #define SILLY_H #include using namespace std; namespace shomper_silly_class { //void printPrompt(string); //string readString(); class silly { public: silly(); void getInfo(); void printInfo(); private: string text; }; } #endif // SILLY_H