cretated the class slsDetectorDefs, more advanced funcs moved from slsDetectorBase to slsDetectorUtils, separated function index enum from other definitions (share with dectris?)

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@162 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
bergamaschi
2012-03-23 11:44:24 +00:00
parent 513e033a45
commit 13344152aa
13 changed files with 466 additions and 358 deletions

View File

@ -4,7 +4,7 @@
#include "sls_detector_defs.h"
#include "slsDetectorBase.h"
#include "slsDetectorUtils.h"
using namespace std;
@ -12,12 +12,12 @@ using namespace std;
/* It is inherited by both slsDetector and multiSlsDetector */
/* *\/ */
class slsDetectorCommand {
class slsDetectorCommand : public slsDetectorDefs {
public:
slsDetectorCommand(slsDetectorBase *det);
slsDetectorCommand(slsDetectorUtils *det);
/* /\** */
@ -100,7 +100,7 @@ class slsDetectorCommand {
private:
slsDetectorBase *myDet;
slsDetectorUtils *myDet;
string cmdUnderDevelopment(int narg, char *args[], int action);
string cmdUnknown(int narg, char *args[], int action);