]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/command.cpp
9530cbabe78f22f40b3332bfbfe45053905445b4
[r2c2.git] / source / libmarklin / command.cpp
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2008 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #include "command.h"
9
10 using namespace std;
11
12 namespace Marklin {
13
14 Command::Command(const string &c):
15         cmd(c),
16         sent(false)
17 { }
18
19 void Command::set_sent(bool s)
20 {
21         sent=s;
22 }
23
24 } // namespace Marklin