xref: /haiku/src/preferences/datatranslations/DataTranslationsSettings.h (revision 579f1dbca962a2a03df54f69fdc6e9423f91f20e)
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 
15 class DataTranslationsSettings {
16 public:
17 							DataTranslationsSettings();
18 							~DataTranslationsSettings();
19 
20 			BPoint			WindowCorner() const { return fCorner; }
21 			void			SetWindowCorner(BPoint corner);
22 
23 	static DataTranslationsSettings*	Instance();
24 
25 private:
26 			BPoint			fCorner;
27 };
28 
29 
30 #endif	// DATA_TRANSLATIONS_SETTINGS_H
31