aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/DB.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 16:46:00 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 16:46:00 +0100
commitfdf91122ddc1fa9942c8790d2c8c845f877df11d (patch)
tree4dfbdb345f48bb01838057bcf1b88795b873f224 /src/crepe/facade/DB.h
parentd9a51069366650051e644453f5d3ac90f2ab29b5 (diff)
convert more examples to unit tests
Diffstat (limited to 'src/crepe/facade/DB.h')
-rw-r--r--src/crepe/facade/DB.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/crepe/facade/DB.h b/src/crepe/facade/DB.h
index 629b0eb..115c0f1 100644
--- a/src/crepe/facade/DB.h
+++ b/src/crepe/facade/DB.h
@@ -22,8 +22,10 @@ class DB {
public:
/**
* \param path The path of the database (created if nonexistant)
+ *
+ * \note If \p path is empty, the database is entirely in-memory
*/
- DB(const std::string & path);
+ DB(const std::string & path = "");
virtual ~DB() = default;
public: