// bell.h // Definition for class Bell. #ifndef BELL_H #define BELL_H class Bell { public: Bell(); // constructor ~Bell(); // destructor void ringBell() const; // ring the bell }; #endif // BELL_H