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