xref: /haiku/src/add-ons/translators/pcx/ConfigView.h (revision a381c8a06378de22ff08adf4282b4e3f7e50d250)
1 /*
2  * Copyright 2004-2005, 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(const BRect &frame, uint32 resize = B_FOLLOW_ALL,
15 			uint32 flags = B_WILL_DRAW);
16 		virtual ~ConfigView();
17 };
18 
19 #endif	/* CONFIG_VIEW_H */
20