Go to the source code of this file.
◆ IMMUTABLE_CONTAINER
#define IMMUTABLE_CONTAINER |
( |
|
_class_ | ) |
|
Value:public: \
\
public: \
static bool isMutableStatic() { return false; } \
\
public: \
virtual bool isMutable() const { return false; } \
\
public: \
Core::PropertyBundle<_class_> getPropertyBundle() const \
{ \
Core::PropertyBundle<_class_> dsBundle; \
return dsBundle; \
}
◆ MUTABLE_CONTAINER
#define MUTABLE_CONTAINER |
( |
|
_class_ | ) |
|
Value:public: \
static bool isMutableStatic() { return true; } \
\
public: \
virtual bool isMutable() const { return true; }
◆ USE_PROPERTYMAP
◆ PropertyName
constexpr const char* PropertyName = "Property" |
|
constexpr |