NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
CBootCommand.h
1 
23 #ifndef CBOOTCOMMAND_H
24 #define CBOOTCOMMAND_H
25 
26 #include <TCLObjectProcessor.h>
27 
28 class CMyEventSegment;
29 class CTCLInterpreter;
30 class CTCLObject;
31 
44 class CBootCommand : public CTCLObjectProcessor
45 {
46 private:
47  CMyEventSegment* m_pSegment;
48 public:
49  CBootCommand(CTCLInterpreter& interp, const char* pCmd, CMyEventSegment* pSeg);
50  virtual ~CBootCommand();
51 
52  virtual int operator()(CTCLInterpreter& interp, std::vector<CTCLObject>& objv);
53 };
54 
55 #endif
virtual ~CBootCommand()
Definition: CBootCommand.cpp:47
Definition: CMyEventSegment.h:47
Definition: CBootCommand.h:44
virtual int operator()(CTCLInterpreter &interp, std::vector< CTCLObject > &objv)
Definition: CBootCommand.cpp:63
CBootCommand(CTCLInterpreter &interp, const char *pCmd, CMyEventSegment *pSeg)
Definition: CBootCommand.cpp:37