xref: /haiku/src/preferences/datatranslations/DataTranslationsSettings.h (revision 1d9d47fc72028bb71b5f232a877231e59cfe2438)
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 	private:
24 		BPoint fCorner;
25 };
26 
27 #endif	// DATA_TRANSLATIONS_SETTINGS_H
28