1/*
2 * Copyright 2002-2006, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
4 *
5 * Authors:
6 *		Oliver Siebenmarck
7 */
8#ifndef DATA_TRANSLATIONS_SETTINGS_H
9#define DATA_TRANSLATIONS_SETTINGS_H
10
11
12#include <Point.h>
13
14
15class DataTranslationsSettings {
16public:
17							DataTranslationsSettings();
18							~DataTranslationsSettings();
19
20			BPoint			WindowCorner() const { return fCorner; }
21			void			SetWindowCorner(BPoint corner);
22
23	static DataTranslationsSettings*	Instance();
24
25private:
26			BPoint			fCorner;
27};
28
29
30#endif	// DATA_TRANSLATIONS_SETTINGS_H
31