ucm_schilling
Config.hpp
Go to the documentation of this file.
1 #ifndef _UCM_SCHILLING_CONFIG_HPP_
2 #define _UCM_SCHILLING_CONFIG_HPP_
3 
4 namespace ucm_schilling
5 {
6 
7 struct Config
8 {
9  int count0;
10  int count50;
11  int count100;
12 
14  : count0(0),
15  count50(50),
16  count100(100)
17  {
18  }
19 
20 };
21 
22 }
23 #endif
Config()
Definition: Config.hpp:13
int count100
Definition: Config.hpp:11
int count0
Definition: Config.hpp:9
Definition: Config.hpp:7
int count50
Definition: Config.hpp:10
Definition: Config.hpp:4