Advertisement
voidpointer

Untitled

Oct 21st, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. class Foo
  2. {
  3.   public:
  4.     Foo() {}
  5.     ~Foo() {}
  6. };
  7.  
  8. // Without access specifiers (indentation stays the same)
  9. class Foo
  10. {
  11.     Foo() {}
  12.     ~Foo() {}
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement