// ***************************************************************** // Author: Zhixiang Chen // Class: CSCI/CMPE 2380.01, Fall, 2008 // Lab 9: virtual methods vs. polymorphism // Date: September 21, 2008 // Comment: The code here is meant to be revised. // ***************************************************************** #include #include using namespace std; #ifndef LAB2380_9_HEAD_H #define LAB2380_9_HEAD_H /*************************************************************** Part One: Straight inheritance with virtual memthods ***************************************************************/ //base class One class One { public: void whoami(){cout<<"This is One."<