]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/command.cpp
Style fixes, including:
[r2c2.git] / source / libmarklin / command.cpp
1 #include "command.h"
2
3 using namespace std;
4
5 namespace Marklin {
6
7 Command::Command(const string &c):
8         cmd(c),
9         sent(false)
10 { }
11
12 void Command::set_sent(bool s)
13 {
14         sent=s;
15 }
16
17 } // namespace Marklin