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 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 33 #endif // _TIME_H 34 35