diff --git a/util/epist/actions.cc b/util/epist/actions.cc new file mode 100644 index 00000000..a36cf815 --- /dev/null +++ b/util/epist/actions.cc @@ -0,0 +1,5 @@ +#include "actions.hh" + +Action::Action(enum ActionType type, KeyCode keycode, int modifierMask): + _type(type), _keycode(keycode), _modifierMask(modifierMask) +{ }