LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
RoutineRecorderData.h
1 #ifndef ROUTINE_RECORDER_DATA_H
2 #define ROUTINE_RECORDER_DATA_H
3 #include "ComponentData.h"
4 
5 namespace data
6 {
11  namespace routinerecorder
12  {
13  class RoutineRecorderData
14  {
15  public:
16  RoutineRecorderData();
17 
18  bool ShouldRecord();
19  void ShouldRecord(bool record);
20 
21  private:
22  bool m_recordRequested;
23  };
24  }
25 }
26 
27 #endif