tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / time / Time.h
blob99ab955a81ecba357a9be4c04d266fb64eb54afd
1 /*
2 * Copyright 2002-2010, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
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
14 #include <Application.h>
17 class BMessage;
18 class TTimeWindow;
21 class TimeApplication : public BApplication {
22 public:
23 TimeApplication();
24 virtual ~TimeApplication();
26 virtual void ReadyToRun();
27 virtual void AboutRequested();
29 virtual void MessageReceived(BMessage* message);
31 private:
32 TTimeWindow* fWindow;
36 #endif // _TIME_H