-
Heiko Becker authored
That's what the README suggests and - more importantly - the cmake config file works with. Also use angle brackets instead of quotation marks in two cases.
Heiko Becker authoredThat's what the README suggests and - more importantly - the cmake config file works with. Also use angle brackets instead of quotation marks in two cases.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
name.hpp 344 B
#pragma once
#include <nlohmann/json.hpp>
#include <string>
using json = nlohmann::json;
namespace mtx {
namespace events {
namespace state {
struct Name
{
std::string name;
};
void
from_json(const json &obj, Name &event);
void
to_json(json &obj, const Name &event);
} // namespace state
} // namespace events
} // namespace mtx