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

31 lines
563 B
C++

#ifndef VPROPERTYTREEVIEW_P_H
#define VPROPERTYTREEVIEW_P_H
// ONLY INCLUDE THIS IN .CPP FILES
#include <QMap>
#include <QString>
namespace VPE {
class VPropertyDelegate;
class VPropertyTreeViewPrivate
{
public:
//! Property Delegate
VPropertyDelegate* PropertyDelegate;
//! Constructor
VPropertyTreeViewPrivate(VPropertyDelegate* delegate)
: PropertyDelegate(delegate) {}
//! Constructor
VPropertyTreeViewPrivate()
: PropertyDelegate(nullptr) {}
};
}
#endif // VPROPERTYTREEVIEW_P_H