some more changes

This commit is contained in:
Dhanya Maliakal
2015-10-08 12:19:07 +02:00
parent 92b73e0e88
commit a3e88f96d6
10 changed files with 1436 additions and 1350 deletions

View File

@ -111,6 +111,16 @@ public:
};
/** returns string from enabled/disabled
\param b true or false
\returns string enabled, disabled
*/
static string stringEnable(bool b){\
if(b) return string("enabled"); \
else return string("disabled"); \
};
#ifdef __cplusplus
protected: