@@ -180,7 +180,7 @@ endif | |||||
# Plugin helpers | # Plugin helpers | ||||
allplugins: | |||||
plugins: | |||||
for f in plugins/*; do $(MAKE) -C "$$f"; done | for f in plugins/*; do $(MAKE) -C "$$f"; done | ||||
cleanplugins: | cleanplugins: | ||||
@@ -189,7 +189,7 @@ cleanplugins: | |||||
distplugins: | distplugins: | ||||
for f in plugins/*; do $(MAKE) -C "$$f" dist; done | for f in plugins/*; do $(MAKE) -C "$$f" dist; done | ||||
plugins: | |||||
cmdplugins: | |||||
for f in plugins/*; do (cd "$$f" && ${CMD}); done | for f in plugins/*; do (cd "$$f" && ${CMD}); done | ||||
@@ -54,6 +54,14 @@ struct Param { | |||||
paramQuantityFactory = new TParamQuantityFactory; | paramQuantityFactory = new TParamQuantityFactory; | ||||
} | } | ||||
float getValue() { | |||||
return value; | |||||
} | |||||
void setValue(float value) { | |||||
this->value = value; | |||||
} | |||||
bool isBounded(); | bool isBounded(); | ||||
json_t *toJson(); | json_t *toJson(); | ||||
void fromJson(json_t *rootJ); | void fromJson(json_t *rootJ); | ||||