Advertisement
stylano

Untitled

Jul 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. class AAA
  2.    {
  3.    public:
  4.       int a;
  5.       AAA( int aaa ) { a = aaa; }
  6.    };
  7.  
  8.  
  9. class BBB : public AAA
  10.    {
  11.    public:
  12.       AAA a;
  13.       BBB() : AAA( 0 ) {};
  14.    };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement