aboutsummaryrefslogtreecommitdiff
path: root/include/Log.hpp
diff options
context:
space:
mode:
authordec05eba <0xdec05eba@gmail.com>2018-06-02 01:39:25 +0200
committerdec05eba <0xdec05eba@gmail.com>2018-06-02 01:39:29 +0200
commitad7cc4dbe4dacaa5cccfd1c9adeccc0ece2299f4 (patch)
treeb045f3bc6068fb797203953d661bad5fcc9c509f /include/Log.hpp
parent595b1b7d2fc7aa084296978b8a38a26ed960a0f5 (diff)
Receive data with epoll_wait
Diffstat (limited to 'include/Log.hpp')
-rw-r--r--include/Log.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/Log.hpp b/include/Log.hpp
new file mode 100644
index 0000000..1301c5b
--- /dev/null
+++ b/include/Log.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+namespace sibs
+{
+ class Log
+ {
+ public:
+ static void debug(const char *fmt, ...);
+ static void warn(const char *fmt, ...);
+ static void error(const char *fmt, ...);
+ };
+}