Diana Software
MMyModule.hh
Go to the documentation of this file.
1 #ifndef _M_MYMODULE_HH_
2 #define _M_MYMODULE_HH_
3 
38 #include "QModule.hh"
39 
40 class MMyModule : public Diana::QModule {
41 
42  public:
43 
45  void Init(Diana::QEvent& ev);
46 
48  void Do(Diana::QEvent& ev);
49  //void Do(Diana::QEvent& ev, const Diana::QEventList& neighbours);
50 
52  void Done();
53  private:
54 
55 };
56 
57 #endif
58 
one-line description of your module
Definition: MMyModule.hh:40
void Init(Diana::QEvent &ev)
Init method.
Definition: MMyModule.cc:10
void Done()
Done method.
Definition: MMyModule.cc:85
void Do(Diana::QEvent &ev)
Do method. Declare and implement only one of the two versions.
Definition: MMyModule.cc:57