home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / i / iv26_w_3.zip / EXAMPLES / ICLASS / TEST.H < prev   
C/C++ Source or Header  |  1992-03-09  |  216b  |  21 lines

  1. class Base {
  2. public:
  3.     int a;
  4. };
  5.  
  6. class Child : public Base {
  7. public:
  8.     int b;
  9. };
  10.  
  11. class Child1 : public Base {
  12. public:
  13.     int c;
  14. };
  15.  
  16. class ChildChild : public Child {
  17. public:
  18.     int d;
  19. };
  20.  
  21.