1/*
2 * Copyright 2002-2010, 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
17class BMessage;
18class TTimeWindow;
19
20
21class TimeApplication : public BApplication {
22public:
23								TimeApplication();
24	virtual						~TimeApplication();
25
26	virtual void				ReadyToRun();
27	virtual void				AboutRequested();
28
29	virtual void				MessageReceived(BMessage* message);
30
31private:
32			TTimeWindow*		fWindow;
33};
34
35
36#endif	// _TIME_H
37
38