LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
Collect.h
1 #ifndef COLLECT_H_
2 #define COLLECT_H_
3 
4 #include "Routine.h"
5 
6 class Collect : public Routine
7 {
8 public:
9  Collect(bool collect);
10 
11  virtual void Run();
12 
13  virtual bool Completed();
14 private:
15  bool m_collect;
16 };
17 
18 #endif