Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-07-22 17:21:35 +0000
committerStijn Buys <ingar@osirion.org>2008-07-22 17:21:35 +0000
commit9adc3720cd8fe2ba843d014dbbfe81bf936f9715 (patch)
treeb6610b334a33ede55068f1daa1b869c251548c6f /src/client/action.cc
parentbb8b4e081d33f4f1aca6ba23a78842e1fc9cd721 (diff)
more keyboard handling cleanups
Diffstat (limited to 'src/client/action.cc')
-rw-r--r--src/client/action.cc30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/client/action.cc b/src/client/action.cc
new file mode 100644
index 0000000..b86476e
--- /dev/null
+++ b/src/client/action.cc
@@ -0,0 +1,30 @@
+/*
+ client/action.h
+ This file is part of the Osirion project and is distributed under
+ the terms and conditions of the GNU General Public License version 2
+*/
+
+#include "client/action.h"
+
+namespace client
+{
+
+Action::Action(const char *name, Identifier action, const char *info)
+{
+ action_name.assign(name);
+ action_id = action;
+
+ set_info(info);
+}
+
+Action::~Action()
+{
+}
+
+void Action::set_info(const char *info) {
+ if (info)
+ action_info.assign(info);
+ else
+ action_info.clear();
+}
+}