removed virtual

This commit is contained in:
Erik Frojdh 2019-01-17 17:30:36 +01:00
parent b07492be6f
commit eff17371a5

View File

@ -18,7 +18,7 @@ class slsDetectorCommand : public virtual slsDetectorDefs {
slsDetectorCommand(multiSlsDetector *det); slsDetectorCommand(multiSlsDetector *det);
virtual ~slsDetectorCommand(){};
/* /*
* Executes a set of string arguments according to a given format. * Executes a set of string arguments according to a given format.
@ -29,7 +29,7 @@ class slsDetectorCommand : public virtual slsDetectorDefs {
* @param action can be PUT_ACTION or GET_ACTION(from text client even READOUT_ACTION for acquisition) * @param action can be PUT_ACTION or GET_ACTION(from text client even READOUT_ACTION for acquisition)
* @param detPos -1 for all detectors in multi detector list or position of a specific detector in list * @param detPos -1 for all detectors in multi detector list or position of a specific detector in list
*/ */
virtual std::string executeLine(int narg, char *args[], int action, int detPos = -1); std::string executeLine(int narg, char *args[], int action, int detPos = -1);
/* /\** */ /* /\** */
/* returns the help for the executeLine command */ /* returns the help for the executeLine command */