valentina/src/libs/vpropertyexplorer/vpropertyset_p.h
dismine 3ccd408718 New library VPropertyExplorer.
--HG--
branch : feature
2014-08-26 18:06:14 +03:00

30 lines
569 B
C++

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