20 lines
281 B
C++
20 lines
281 B
C++
#include "Property.h"
|
|
|
|
Property::Property(PROPGRIDITEM item, void(*onPropUpdate)(PROPGRIDITEM))
|
|
{
|
|
this->callbackFuncOnChange = onPropUpdate;
|
|
this->item = item;
|
|
}
|
|
|
|
Property::~Property(void)
|
|
{
|
|
}
|
|
|
|
void Property::updateProperty(PROPGRIDITEM item)
|
|
{
|
|
callbackFuncOnChange(item);
|
|
}
|
|
|
|
|
|
|