diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 16:24:08 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 16:24:08 +0100 |
commit | fa0d298afafdc81d00164765903161205cf09a7e (patch) | |
tree | 3796af3e4544d35b12cefe245b230c3c8ff9d93d /src/crepe/manager/SaveManager.h | |
parent | 876896e50711509e80ef551b4e8ad440e8039b97 (diff) |
move DB fix from `loek/doxygen` to `loek/savemgr`
Diffstat (limited to 'src/crepe/manager/SaveManager.h')
-rw-r--r-- | src/crepe/manager/SaveManager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/manager/SaveManager.h b/src/crepe/manager/SaveManager.h index 61a978d..1e34bc0 100644 --- a/src/crepe/manager/SaveManager.h +++ b/src/crepe/manager/SaveManager.h @@ -36,17 +36,17 @@ public: ValueBroker<T> get(const std::string & key, const T & default_value); /** - * \brief Get a read/write reference to a value + * \brief Get a value directly * * \param key The value key * - * \return Read/write reference to the value + * \return The value * * \note Attempting to read this value before it is initialized (i.e. set) will result in an * exception */ template <typename T> - ValueBroker<T> get(const std::string & key); + T get(const std::string & key); /** * \brief Set a value directly |