blob: 2f54dc3afd812014d3caaafa90e90090d4fb70f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
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 *description)
{
_name.assign(name);
_id = action;
set_description(description);
}
Action::~Action()
{
}
void Action::set_description(const char *description)
{
if (description)
{
_description.assign(description);
}
else
{
_description.clear();
}
}
} // namespace client
|