home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv7.zip / VACPP / IBMCPP / smarts / DTS / CAT / CAT.HH < prev   
Text File  |  1995-06-02  |  341b  |  17 lines

  1. %PROLOG%
  2.  
  3. #include "animal.hh"
  4.  
  5. /*
  6.  * The "Cat" derived class.
  7.  * We will override one method, and supply our own
  8.  * default constructor with a different default name.
  9.  */
  10.  
  11. class _Export Cat : public Animal
  12. {
  13.    public:
  14.        void reactTo(provocation);   // Override base class method
  15.        Cat(char* name = "Fluffy");
  16. };
  17.