#ifndef ANNOUNCER_H #define ANNOUNCER_H #include //for class string using namespace std; class announcer { //Declarations for data members string name; //name of this object static int count; //static data member public: //Declarations for constructors and destructor announcer(const string& s); //plain old constructor announcer(const announcer& another); //"copy" constructor ~announcer(); //destructor //Declarations for other member functions void print() const; //plain old (i.e., non-static) member func static int howMany(); //static member function }; #endif