1 /* 2 * Copyright 1999, Be Incorporated. All Rights Reserved. 3 * This file may be used under the terms of the Be Sample Code License. 4 * 5 */ 6 #ifndef _CLOCK_APPLICATION_H 7 #define _CLOCK_APPLICATION_H 8 9 10 #include <Application.h> 11 12 13 class TClockWindow; 14 15 16 class THelloApplication : public BApplication { 17 public: 18 THelloApplication(); 19 virtual ~THelloApplication(); 20 21 virtual void MessageReceived(BMessage *msg); 22 23 private: 24 TClockWindow *myWindow; 25 }; 26 27 28 extern const char *kAppSignature; 29 30 31 #endif // _CLOCK_APPLICATION_H 32 33