// ***************************************************************** // Author: Zhixiang Chen // Class: CSCI/CMPE 2380, Spring 2009 // Lab 5: Header file for Lab 5 // Date: January 14, 2009 // Comment: The code here is meant to be revised. // ***************************************************************** #include #include using namespace std; #ifndef LAB2380_5_HEAD_H #define LAB2380_5_HEAD_H //A simple base class class A { public: int a; A(); //default constructor A(int, int, int); //another constructor ~A(); //destructor void printA(); //printA protected: int b; private: int c; }; //A's deafult constructor A::A() { cout<<"Inside A's constructor" <