Skip to content

Commit 7ae0277

Browse files
committed
add config file
1 parent a192483 commit 7ae0277

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

arkr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#include <sstream>
88
#include <string>
99
#include "json.hpp"
10+
#include "config.hpp"
1011
#include <unistd.h>
1112
#include <ctime>
1213
#include <algorithm>

config.hpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class config {
2+
public:
3+
class Experimental;
4+
};
5+
class config::Experimental {
6+
public:
7+
const static bool usermode = false;
8+
};

0 commit comments

Comments
 (0)