#ifndef ANNOUNCER_H #define ANNOUNCER_H using namespace std; class announcer { int id; //identification number for this object static int count; //declaration of static data member public: //Constructors and destructor announcer(int init_id); //constructor announcer(const announcer& another); //"copy" constructor ~announcer(); //destructor void print() const; static int howMany(); //static member function }; #endif