rtop
params.h
Go to the documentation of this file.
1 #include <map>
2 
3 #ifndef PARAMS_H_
4 #define PARAMS_H_
5 
6 namespace rtop
7 {
8  int POLL_INTVL = 1000;
9  bool EXIT = false;
10  int KEY_INPUT = 0;
11  std::map<int, std::pair<int,int>> colors;
12 } // rtop
13 
14 
15 
16 #endif // PARAMS_H_
std::map< int, std::pair< int, int > > colors
Definition: params.h:11
int POLL_INTVL
Definition: params.h:8
int KEY_INPUT
Definition: params.h:10
bool EXIT
Definition: params.h:9
Definition: action.h:7