Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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();
+}
+}