QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RPropertyEvent.h
Go to the documentation of this file.
1 #ifndef RPROPERTYEVENT_H
2 #define RPROPERTYEVENT_H
3 
4 #include <QVariant>
5 
6 #include "RPropertyTypeId.h"
7 #include "RPropertyAttributes.h"
8 
9 
10 
20 public:
22  propertyTypeId(-1) {
23  }
24 
31  : propertyTypeId(propertyTypeId),
32  value(value),
34  }
35 
40  return propertyTypeId;
41  }
42 
46  QVariant getValue() const {
47  return value;
48  }
49 
54  return entityTypeFilter;
55  }
56 
57 private:
59  QVariant value;
61 };
62 
66 
67 #endif