added contructor for the actions
authorScott Moynes <smoynes@nexus.carleton.ca>
Fri, 19 Jul 2002 22:34:28 +0000 (22:34 +0000)
committerScott Moynes <smoynes@nexus.carleton.ca>
Fri, 19 Jul 2002 22:34:28 +0000 (22:34 +0000)
util/epist/actions.cc [new file with mode: 0644]

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