summaryrefslogtreecommitdiffstats
path: root/CAN-config-generator/src/openxc/diagnostic_message.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-06-20 10:24:05 +0000
committerRomain Forlot <romain.forlot@iot.bzh>2017-06-20 10:24:05 +0000
commit32e25cbca210a359b09768537b6f443fe90a3070 (patch)
tree3309794c15d8a8f8e9c1c08cad072ee1378813ba /CAN-config-generator/src/openxc/diagnostic_message.hpp
parent76c43dec62b2e21cd6446360c00d4fe6b437533f (diff)
Separation Generator to a dedicated repo
Change-Id: Id94831651c3266861435272a6e36c7884bef2c45 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-config-generator/src/openxc/diagnostic_message.hpp')
-rwxr-xr-xCAN-config-generator/src/openxc/diagnostic_message.hpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/CAN-config-generator/src/openxc/diagnostic_message.hpp b/CAN-config-generator/src/openxc/diagnostic_message.hpp
deleted file mode 100755
index 1ceba1bd..00000000
--- a/CAN-config-generator/src/openxc/diagnostic_message.hpp
+++ /dev/null
@@ -1,35 +0,0 @@
-#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);
-}