summaryrefslogtreecommitdiffstats
path: root/src/openxc/command.hpp
diff options
context:
space:
mode:
authorLoïc Collignon <loic.collignon@iot.bzh>2017-03-15 02:36:22 +0100
committerLoïc Collignon <loic.collignon@iot.bzh>2017-03-15 02:36:22 +0100
commitf2487f0b481fae4aa1561e82e8e4aa5b8d0654a0 (patch)
tree7bfc1b140af1e922fc14ba3a02c042b69f24c128 /src/openxc/command.hpp
parent00655ea12cc870b84291e462ff791461cc500d68 (diff)
initial commit.
Change-Id: I5e639061c99b7cc6da3da06ccf19bde683a69e9f Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'src/openxc/command.hpp')
-rwxr-xr-xsrc/openxc/command.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/openxc/command.hpp b/src/openxc/command.hpp
new file mode 100755
index 00000000..2c052266
--- /dev/null
+++ b/src/openxc/command.hpp
@@ -0,0 +1,25 @@
+#pragma once
+
+#include <string>
+#include <json.hpp>
+
+namespace openxc
+{
+ class command
+ {
+ private:
+ std::string name_;
+ bool enabled_;
+ std::string handler_;
+ public:
+ std::string name() const;
+ bool enabled() const;
+ std::string handler() const;
+
+ void from_json(const nlohmann::json& j);
+ nlohmann::json to_json() const;
+ };
+
+ void to_json(nlohmann::json& j, const command& p);
+ void from_json(const nlohmann::json& j, command& p);
+}