From: Scott Moynes Date: Fri, 19 Jul 2002 22:34:28 +0000 (+0000) Subject: added contructor for the actions X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=ba58f65d00d864f75b1f0cdfd2b60ec8882d2594;p=chaz%2Fopenbox added contructor for the actions --- 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) +{ }