                                   // Chapter 11 - Program 1
#ifndef PERSONHPP
#define PERSONHPP

class person {
protected:       // Make these variables available to the subclasses
   char name[25];
   int salary;
public:
   virtual void display(void);
};

#endif
