diff options
| author | Scott Moynes <smoynes@nexus.carleton.ca> | 2002-07-19 22:34:28 +0000 |
|---|---|---|
| committer | Scott Moynes <smoynes@nexus.carleton.ca> | 2002-07-19 22:34:28 +0000 |
| commit | ba58f65d00d864f75b1f0cdfd2b60ec8882d2594 (patch) | |
| tree | 77d9596dcfce7cd7a267bc295c861f2a3d5ed388 | |
| parent | a0e50e15b507f1f8752bd7858c9e758265a34fc4 (diff) | |
added contructor for the actions
| -rw-r--r-- | util/epist/actions.cc | 5 |
1 files changed, 5 insertions, 0 deletions
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) +{ } |
