14 lines
162 B
C++
14 lines
162 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <atomic>
|
|
#include <vector>
|
|
|
|
#define NORMAL 0
|
|
#define INSERT 1
|
|
#define SELECT 2
|
|
|
|
extern std::atomic<bool> running;
|
|
|
|
#endif
|