Guest User

Untitled

a guest
Jul 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. class Base {
  2. protected:
  3. Base() {}
  4. }
  5.  
  6. class Child : Base {
  7. public:
  8. Child() : Base() {}
  9. }
Add Comment
Please, Sign In to add comment