added contructor for the actions
This commit is contained in:
parent
a0e50e15b5
commit
ba58f65d00
1 changed files with 5 additions and 0 deletions
5
util/epist/actions.cc
Normal file
5
util/epist/actions.cc
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include "actions.hh"
|
||||
|
||||
Action::Action(enum ActionType type, KeyCode keycode, int modifierMask):
|
||||
_type(type), _keycode(keycode), _modifierMask(modifierMask)
|
||||
{ }
|
Loading…
Reference in a new issue