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
14class Property;
15class PropertyEditorView;
16
17PropertyEditorView*	EditorFor(Property* property);
18
19#endif // PROPERTY_EDITOR_FACTORY
20