Skip to content
Tatsuya Yokoda edited this page Feb 8, 2015 · 1 revision

core/Object

Object();
~Object();

bool debug()
void debug(bool value)
        
int typeID()

int no()
void no(int value)

bool getBoolProperty(string propertyName)

void setBoolProperty(string propertyName, bool value)

string getStringProperty(string propertyName)
void setStringProperty(string propertyName, string value)

int getIntProperty(string propertyName)

void setIntProperty(string propertyName, int value)

float getFloatProperty(string propertyName)
void setFloatProperty(string propertyName, float value)

double getDoubleProperty(string propertyName)
void setDoubleProperty(string propertyName, double value)

template <class T>
T& getProperty(string propertyName)

template <class T>
void setProperty(string propertyName, const T* value)

template <class T>
void setProperty(string propertyName, const T& value)