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