/* * @topic T10342 Feb 5, 2013 Inheritance C++ Demo * @brief class VWCharacter -- top of the class hierarchy */ class VWCharacter { public: virtual void speak() = 0; };