Diana Software
MTestDriver.hh
Go to the documentation of this file.
1 #ifndef _M_TESTDRIVER_HH_
2 #define _M_TESTDRIVER_HH_
3 
39 #include "QDriver.hh"
40 
41 namespace Diana{ class QEventAssembler; };
42 
43 class MTestDriver : public Diana::QDriver {
44 
45  public:
47  MTestDriver();
48 
50  ~MTestDriver();
51 
52  Action Menu();
54  Action Init(Diana::QEventAssembler& eva);
55 
57  Action Do(Diana::QEventAssembler& eva);
58 
60  Action Done();
61  private:
62 
63 };
64 
65 #endif
66 
one-line description of your module
Definition: MTestDriver.hh:43
Action Do(Diana::QEventAssembler &eva)
Do method.
Definition: MTestDriver.cc:68
~MTestDriver()
destructor
Definition: MTestDriver.cc:15
Action Init(Diana::QEventAssembler &eva)
Init method.
Definition: MTestDriver.cc:35
Action Menu()
Definition: MTestDriver.cc:20
Action Done()
Done method.
Definition: MTestDriver.cc:81
MTestDriver()
constructor
Definition: MTestDriver.cc:10
Visitor class of QEvent that provides full handling of QEvent.
the Diana namespace is needed because sometimes we use Qt libraries, that use same class names of our...