diff options
author | rtk0c <[email protected]> | 2022-05-23 22:36:46 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-23 22:36:46 -0700 |
commit | e3e848ac4da1c2ae59d93e62da8ef6f87b3452cd (patch) | |
tree | f70d86d4ae80f1fedc0afb1ba3b923e3651f0475 /source/Uid.hpp | |
parent | 123f741e3f5374b93ac39887b62bfa0d66762ae2 (diff) |
Changeset: 37 Branch comment: [] Add infrastructure for rendering wireframe (rendering broken) including saving and loading config files
Diffstat (limited to 'source/Uid.hpp')
-rw-r--r-- | source/Uid.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Uid.hpp b/source/Uid.hpp index f58129c..539de03 100644 --- a/source/Uid.hpp +++ b/source/Uid.hpp @@ -25,8 +25,8 @@ struct Uid { std::string WriteString(); void Read(const rapidjson::Value& value); - void WriteInto(rapidjson::Value& value, rapidjson::Document& root); - rapidjson::Value Write(rapidjson::Document& root); + void WriteInto(rapidjson::Value& value, rapidjson::Document& root) const; + rapidjson::Value Write(rapidjson::Document& root) const; auto operator<=>(const Uid&) const = default; }; |