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_SETTINGS_H 11 #define TIME_SETTINGS_H 12 13 14 #include <Point.h> 15 #include <String.h> 16 17 18 class TimeSettings { 19 public : 20 TimeSettings(); 21 ~TimeSettings(); 22 23 BPoint LeftTop() const; 24 void SetLeftTop(const BPoint leftTop); 25 26 private: 27 BString fSettingsFile; 28 }; 29 30 #endif // TIME_SETTINGS_H 31 32