Caleb Palmer | 626270a | 2022-02-21 11:05:08 -0600 | [diff] [blame] | 1 | #include <util/dbus.hpp> |
2 | |||||
3 | namespace util | ||||
4 | { | ||||
5 | |||||
6 | namespace dbus | ||||
7 | { | ||||
8 | |||||
9 | MachineType getMachineType() | ||||
10 | { | ||||
11 | // default to Rainier 2S4U | ||||
12 | MachineType machineType = MachineType::Rainier_2S4U; | ||||
13 | |||||
14 | return machineType; | ||||
15 | } | ||||
16 | |||||
17 | } // namespace dbus | ||||
18 | |||||
19 | } // namespace util |