aboutsummaryrefslogtreecommitdiffstats
path: root/can-config-generator/src/openxc/diagnostic_message.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-04-11 15:49:47 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-04-11 15:49:47 +0200
commita58d40b5ae336a54408201963b065ee049b43acd (patch)
tree9769e3d5b624e0238fe550df601e5382f259c52e /can-config-generator/src/openxc/diagnostic_message.hpp
parent9e444ade872bc436cf12bc12d03c3a5d51ac0b9e (diff)
parentb7591d16c2686214d5d8dcc0739a233f15aee5db (diff)
Add 'can-config-generator/' from commit 'b7591d16c2686214d5d8dcc0739a233f15aee5db'
git-subtree-dir: can-config-generator git-subtree-mainline: 9e444ade872bc436cf12bc12d03c3a5d51ac0b9e git-subtree-split: b7591d16c2686214d5d8dcc0739a233f15aee5db
Diffstat (limited to 'can-config-generator/src/openxc/diagnostic_message.hpp')
-rwxr-xr-xcan-config-generator/src/openxc/diagnostic_message.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/can-config-generator/src/openxc/diagnostic_message.hpp b/can-config-generator/src/openxc/diagnostic_message.hpp
new file mode 100755
index 00000000..1ceba1bd
--- /dev/null
+++ b/can-config-generator/src/openxc/diagnostic_message.hpp
@@ -0,0 +1,35 @@
+#pragma once
+
+#include <string>
+#include <json.hpp>
+
+namespace openxc
+{
+ class diagnostic_message
+ {
+ private:
+ std::string bus_;
+ std::uint32_t id_;
+ std::uint32_t mode_;
+ float frequency_;
+ std::uint32_t pid_;
+ std::string name_;
+ std::string decoder_;
+ std::string callback_;
+ public:
+ std::string bus() const;
+ std::uint32_t id() const;
+ std::uint32_t mode() const;
+ float frequency() const;
+ std::uint32_t pid() const;
+ std::string name() const;
+ std::string decoder() const;
+ std::string callback() const;
+
+ void from_json(const nlohmann::json& j);
+ nlohmann::json to_json() const;
+ };
+
+ void to_json(nlohmann::json& j, const diagnostic_message& p);
+ void from_json(const nlohmann::json& j, diagnostic_message& p);
+}