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