#include <threemxl/platform/io/configuration/Configuration.h>
#include <muParser.h>
#include <stdlib.h>
Go to the source code of this file.
Define Documentation
Value:bool CConfigSection::get(const std::string& property, TYPE *value) const \
{ \
if (mIConfigSection) \
{ \
IConfigProperty* iConfigProp = mIConfigSection->get(property); \
if (iConfigProp) \
{ \
ASSIGNMENT_STATEMENT; \
return true; \
} \
else \
return false; \
} \
else \
return false; \
}
Definition at line 178 of file Configuration.cpp.
Value:bool CConfigSection::get(const std::string& property, TYPE *value, TYPE preset) const \
{ \
if (get(property, value)) \
return true; \
else \
{ \
*value = preset; \
return false; \
} \
}
Function Documentation