xref: /haiku/src/add-ons/translators/raw/ConfigView.h (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 /*
2  * Copyright 2004-2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef CONFIG_VIEW_H
6 #define CONFIG_VIEW_H
7 
8 
9 #include <View.h>
10 
11 
12 class ConfigView : public BView {
13 	public:
14 		ConfigView(uint32 flags = B_WILL_DRAW);
15 		virtual ~ConfigView();
16 };
17 
18 #endif	/* CONFIG_VIEW_H */
19