BillySheet/include/characteristic/adresse.hpp

28 lines
615 B
C++
Raw Normal View History

2022-01-10 21:16:05 +01:00
#ifndef BILLYSHEET_ADRESSE_HPP
#define BILLYSHEET_ADRESSE_HPP
2022-01-14 22:58:16 +01:00
#include "characteristic.hpp"
2022-01-14 22:06:25 +01:00
#include <nlohmann/json.hpp>
using json = nlohmann::json;
2022-01-10 21:16:05 +01:00
namespace character::characteristic {
2022-01-14 22:58:16 +01:00
class Adresse final : public Characteristic {
2022-01-10 21:34:54 +01:00
public:
2022-01-14 22:58:16 +01:00
Adresse() noexcept: Characteristic(1, 0, 0, 0) {}
2022-01-14 22:06:25 +01:00
2022-01-14 22:58:16 +01:00
~Adresse() noexcept final = default;
2022-01-14 22:06:25 +01:00
friend void from_json(const json &j, Adresse &adresse) {
2022-01-14 22:58:16 +01:00
nlohmann::from_json(j, static_cast<Characteristic &>(adresse));
2022-01-14 22:06:25 +01:00
}
2022-01-10 21:16:05 +01:00
};
2022-01-14 22:06:25 +01:00
void to_json(json &j, const Adresse &adresse) {
2022-01-14 22:58:16 +01:00
to_json(j, static_cast<Characteristic>(adresse));
2022-01-14 22:06:25 +01:00
}
2022-01-10 21:16:05 +01:00
}
#endif //BILLYSHEET_ADRESSE_HPP