Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #ifndef TESTCLASS_H
  2. #define TESTCLASS_H
  3.  
  4. #include <string>
  5.  
  6. class TestClass
  7. {
  8. public:
  9. TestClass();
  10. std::string test();
  11. };
  12.  
  13. #endif // TESTCLASS_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement