diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2017-09-26 20:09:31 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2017-09-26 20:09:31 +0200 |
| commit | c85b624d28564a6f785b25000e2b7825592a919d (patch) | |
| tree | 647b756c824b470b35f1371eb869e9534ed6c1bb /src/looper.cc | |
Initial commit
Diffstat (limited to 'src/looper.cc')
| -rw-r--r-- | src/looper.cc | 10 |
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; |
