#ifndef ANNOUNCER_H #define ANNOUNCER_H #include //for class string using namespace std; class announcer { string name; static int count; public: //Constructors and destructor announcer(const string& s); //constructor announcer(const announcer& another); //"copy" constructor ~announcer(); //destructor void print() const; static int howMany(); //a static member function }; #endif