1 | #include "target.hpp" |
---|---|
2 | |
3 | bool Target::do_start() |
4 | { |
5 | return true; |
6 | } |
7 | |
8 | bool Target::do_stop() |
9 | { |
10 | return true; |
11 | } |
12 | |
13 | bool Target::do_load(const toml::table &) |
14 | { |
15 | return true; |
16 | } |
17 |
1 | #include "target.hpp" |
---|---|
2 | |
3 | bool Target::do_start() |
4 | { |
5 | return true; |
6 | } |
7 | |
8 | bool Target::do_stop() |
9 | { |
10 | return true; |
11 | } |
12 | |
13 | bool Target::do_load(const toml::table &) |
14 | { |
15 | return true; |
16 | } |
17 |