Advertisement
Guest User

Person.h

a guest
May 19th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #ifndef PERSON_H_
  2. #define PERSON_H_
  3.  
  4. #include <string>
  5.  
  6. using namespace std;
  7.  
  8. class Person {
  9. Person();
  10. toString();
  11. };
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement