From ba58f65d00d864f75b1f0cdfd2b60ec8882d2594 Mon Sep 17 00:00:00 2001 From: Scott Moynes Date: Fri, 19 Jul 2002 22:34:28 +0000 Subject: [PATCH] added contructor for the actions --- util/epist/actions.cc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 util/epist/actions.cc 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) +{ } -- 2.39.2