aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/manager/SaveManager.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-14 12:08:08 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-14 12:08:08 +0100
commit721262b488bcb67d5f19583c4a523d6ad1b54354 (patch)
treec7904833a8541fec32b53bd31c1475df2c03da49 /src/crepe/manager/SaveManager.h
parent1623663c6e2e8f33f84b37b9f6bd968c8bc6c92d (diff)
parent5ae2b3c2f7dc207980c6d475e54fa2c5242c560d (diff)
Merge branch 'loek/doxygen' into demo
Diffstat (limited to 'src/crepe/manager/SaveManager.h')
-rw-r--r--src/crepe/manager/SaveManager.h6
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