1#ifndef CONFIG_VIEW
2#define CONFIG_VIEW
3/* ConfigView - the configuration view for the Folder filter
4**
5** Copyright 2001 Dr. Zoidberg Enterprises. All rights reserved.
6*/
7
8
9#include <View.h>
10
11
12class ConfigView : public BView
13{
14	public:
15		ConfigView();
16		void SetTo(const BMessage *archive);
17
18		virtual	status_t Archive(BMessage *into, bool deep = true) const;
19		virtual	void GetPreferredSize(float *width, float *height);
20};
21
22#endif	/* CONFIG_VIEW */
23