#ifndef VPROPERTYSET_P_H #define VPROPERTYSET_P_H // ONLY INCLUDE THIS IN .CPP FILES #include #include namespace VPE { class VProperty; class VPropertySetPrivate { public: //! Property map (ID, Property) QMap Properties; // All the Properties managed by this model are being stored in this map for quick access //! List containing the root properties QList RootProperties; //! Constructor VPropertySetPrivate() { } }; } #endif // VPROPERTYMODEL_P_H