aboutsummaryrefslogtreecommitdiff
path: root/include/Log.hpp
diff options
context:
space:
mode:
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, ...);
+ };
+}