xref: /haiku/src/apps/clock/clock.h (revision d9cebac2b77547b7064f22497514eecd2d047160)
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