xref: /haiku/src/apps/icon-o-matic/generic/property/view/PropertyEditorFactory.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright 2006, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Stephan Aßmus <superstippi@gmx.de>
7  */
8 
9 #ifndef PROPERTY_EDITOR_FACTORY
10 #define PROPERTY_EDITOR_FACTORY
11 
12 #include <SupportDefs.h>
13 
14 class Property;
15 class PropertyEditorView;
16 
17 PropertyEditorView*	EditorFor(Property* property);
18 
19 #endif // PROPERTY_EDITOR_FACTORY
20