xref: /haiku/src/preferences/time/Time.h (revision bc3955fea5b07e2e94a27fc05e4bb58fe6f0319b)
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@berg-net.us>
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 TTimeWindow;
18 
19 
20 class TimeApplication : public BApplication {
21 	public:
22 						TimeApplication();
23 		virtual 		~TimeApplication();
24 
25 		virtual void 	ReadyToRun();
26 		virtual void 	AboutRequested();
27 
28 	private:
29 		TTimeWindow 	*fWindow;
30 };
31 
32 #endif	// TIME_H
33 
34