1 //---------------------------------------------------------------------- 2 // This software is part of the Haiku distribution and is covered 3 // by the MIT License. 4 //--------------------------------------------------------------------- 5 6 #ifndef MESSAGE_HANDLER_H 7 #define MESSAGE_HANDLER_H 8 9 class BMessage; 10 11 class MessageHandler { 12 public: 13 MessageHandler(); 14 virtual ~MessageHandler(); 15 16 virtual void HandleMessage(BMessage *message); 17 }; 18 19 #endif // MESSAGE_HANDLER_H 20