BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
PrefixCommand.h
1 #pragma once
2 
3 #include "core/Command.h"
4 #include "model/DevicePrefix.h"
5 
6 namespace BeeeOn {
7 
12 class PrefixCommand : public Command {
13 public:
14  PrefixCommand(const DevicePrefix &prefix);
15 
16  DevicePrefix prefix() const;
17 
18 private:
19  DevicePrefix m_prefix;
20 };
21 
22 }
Definition: Command.h:25
Ancestor for Commands that are related to a specific DevicePrefix only.
Definition: PrefixCommand.h:12