xref: /haiku/src/add-ons/translators/bmp/BMPView.h (revision d3d8b26997fac34a84981e6d2b649521de2cc45a)
1 /*
2  * Copyright 2002-2006, Haiku, Inc.
3  * Distributed under the terms of the MIT license.
4  *
5  * Authors:
6  *		Michael Wilber
7  *		Axel Dörfler, axeld@pinc-software.de
8  */
9 #ifndef BMP_VIEW_H
10 #define BMP_VIEW_H
11 
12 
13 #include "TranslatorSettings.h"
14 
15 #include <View.h>
16 
17 
18 class BMPView : public BView {
19 	public:
20 		BMPView(const BRect &frame, const char *name, uint32 resizeMode,
21 			uint32 flags, TranslatorSettings *settings);
22 		virtual ~BMPView();
23 
24 	private:
25 		TranslatorSettings *fSettings;
26 };
27 
28 #endif	// BMP_VIEW_H
29