summaryrefslogtreecommitdiff
path: root/src/looper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/looper.cc')
-rw-r--r--src/looper.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/looper.cc b/src/looper.cc
new file mode 100644
index 0000000..0166c12
--- /dev/null
+++ b/src/looper.cc
@@ -0,0 +1,10 @@
+#include "common.hh"
+
+#include "looper.hh"
+
+// static
+uint8_t const Looper::EV_READ = 1 << 0;
+// static
+uint8_t const Looper::EV_WRITE = 1 << 2;
+// static
+uint8_t const Looper::EV_ERR = 1 << 3;