blob: ab8c99f0e2850f9cdcf71161c2ab72de9cf5bfc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
client/control.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/control.h"
namespace client
{
Control::Control(const char *name, const char *command, const char *keyname)
{
_name.assign(name);
_command.assign(command);
_keyname.assign(keyname);
}
Control::~Control()
{
}
} // namespace client
|