1 /* 2 * Copyright 2002-2006, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors in chronological order: 6 * Andrew McCall, mccall@digitalparadise.co.uk 7 * Mike Berg 8 */ 9 #ifndef TIME_SETTINGS_H 10 #define TIME_SETTINGS_H 11 12 13 #include <Point.h> 14 15 16 class TimeSettings { 17 public : 18 TimeSettings(); 19 ~TimeSettings(); 20 21 BPoint WindowCorner() const { return fCorner; } 22 void SetWindowCorner(BPoint corner); 23 24 private: 25 static const char kTimeSettingsFile[]; 26 BPoint fCorner; 27 }; 28 29 #endif // TIME_SETTINGS_H 30