bool DataProperty::getValue(DataObject* obj, DataValue& outValue) const { if (_getter && _getter(obj, const_cast<DataProperty*>(this), outValue)) { outValue.convertTo(_type); return true; } return false; }
bool CProperty::Get(string &value) const { return _getter(value); }
int MaxLogSizeKB::get() { return (_getter == nullptr) ? 10 : _getter(); }