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