xref: /haiku/src/preferences/time/Time.h (revision 1b8f7f13a3dc70e0e903cb94248220b40b732204)
1 /*
2  * Copyright 2002-2007, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Andrew McCall, mccall@digitalparadise.co.uk
7  *		Mike Berg <mike@agamemnon.homelinux.net>
8  *		Julun <host.haiku@gmx.de>
9  */
10 #ifndef TIME_H
11 #define TIME_H
12 
13 
14 #include <Application.h>
15 
16 
17 class BMessage;
18 class TTimeWindow;
19 
20 
21 class TimeApplication : public BApplication {
22 	public:
23 						TimeApplication();
24 		virtual 		~TimeApplication();
25 
26 		virtual void 	MessageReceived(BMessage* message);
27 		virtual void 	ReadyToRun();
28 		virtual void 	AboutRequested();
29 
30 	private:
31 		TTimeWindow 	*fWindow;
32 };
33 
34 #endif	// TIME_H
35 
36