1 #ifndef TIME_SETTINGS_H_ 2 #define TIME_SETTINGS_H_ 3 4 #include <SupportDefs.h> 5 6 class TimeSettings { 7 public : 8 TimeSettings(); 9 ~TimeSettings(); 10 11 BPoint WindowCorner() const { return fCorner; } 12 void SetWindowCorner(BPoint corner); 13 private: 14 static const char kTimeSettingsFile[]; 15 BPoint fCorner; 16 17 }; 18 19 #endif //TIME_SETTINGS_H_ 20 21 22