opened client command interface to the users class

This commit is contained in:
Maliakal Dhanya
2014-05-23 14:48:34 +02:00
parent 0720625360
commit 1bd69fa18f
3 changed files with 49 additions and 5 deletions

View File

@ -45,7 +45,18 @@ class multiSlsDetectorCommand : public slsDetectorCommand {
return s;
};
/**
* calls executeLine with PUT_ACTION
*/
string putCommand(int narg, char *args[], int pos=-1){\
return executeLine(narg, args,slsDetectorDefs::PUT_ACTION,pos);\
};
/**
* calls executeLine with GET_ACTION
*/
string getCommand(int narg, char *args[], int pos=-1){\
return executeLine(narg, args,slsDetectorDefs::GET_ACTION,pos);\
};
private: