Psyllid  v1.12.4
Project 8 Data Acquisisition Software
trigger_flag.hh
Go to the documentation of this file.
1 /*
2  * trigger_flag.hh
3  *
4  * Created on: Dec 28, 2015
5  * Author: nsoblath
6  */
7 
8 #ifndef DATA_TRIGGER_FLAG_HH_
9 #define DATA_TRIGGER_FLAG_HH_
10 
11 #include "member_variables.hh"
12 
13 #include <cstdint>
14 
15 namespace psyllid
16 {
17 
19  {
20  public:
21  trigger_flag();
22  virtual ~trigger_flag();
23 
24  public:
25  mv_accessible( bool, flag );
26  mv_accessible( uint64_t, id );
27  mv_accessible( bool, high_threshold);
28  };
29 
30 } /* namespace psyllid */
31 
32 #endif /* DATA_TRIGGER_FLAG_HH_ */