Advertisement
epic_caterpillar

cpp class setup

Jul 17th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. class Person
  2. {
  3. public:
  4.     Person(string n)
  5.     {
  6.         this.name = n;  
  7.     }
  8. private:
  9.     string name;
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement