| 27 | #include <jsoncpp/json/json.h> |
| 28 | |
| 29 | Sorcery::StringStore::StringStore(const std::string &filename) |
| 30 | : _filename{filename} { |
| 31 | |
| 32 | // Load strings from file |
| 33 | _loaded = _load(); |
| 34 | } |
| 35 | |
| 36 | auto Sorcery::StringStore::reload() -> void { |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected