home *** CD-ROM | disk | FTP | other *** search
/ C++ for Dummies (3rd Edition) / C_FD.iso / CHAP12 / CHAP12_6.CPP < prev    next >
C/C++ Source or Header  |  1996-09-02  |  223b  |  19 lines

  1. // Chap12_6.cpp
  2. class SillyClass
  3. {
  4.   public:
  5.    SillyClass(int& i) : ten(10), refI(i)
  6.    {
  7.    }
  8.   protected:
  9.    const int ten;
  10.    int& refI;
  11. };
  12.  
  13. int main() 
  14. {
  15.    int i;
  16.    SillyClass sc(i);
  17.    return 0;
  18. }
  19.