aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index e548bf8..d7709e2 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,7 +1,14 @@
#include <cstdio>
+// #include "Observer.h"
+#include "Net.h"
int main(int argc, char** argv) {
- printf("hello world!\n");
+ // Observer ob();
+ Net n;
+ // n.setLevel(HIGH);
+ int level = 22;
+ level = n.getLevel();
+ printf("hello world! %d\n", level);
return 0;
}