19 lines
274 B
C
19 lines
274 B
C
|
#ifndef MISC_H_INCLUDED
|
||
|
#define MISC_H_INCLUDED
|
||
|
|
||
|
#include "UserInfo.h"
|
||
|
|
||
|
|
||
|
extern const float CONST_90_DEG;
|
||
|
|
||
|
extern const int CONST_SIGNAL_MESSAGE;
|
||
|
|
||
|
extern const std::string CONST_OK;
|
||
|
|
||
|
extern const int CONST_MAP_STATE_ALARM;
|
||
|
|
||
|
int check_func(int x);
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|