aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-11-09 09:44:08 +0100
committerdec05eba <dec05eba@protonmail.com>2020-08-18 23:25:46 +0200
commitd5614b905be6d76803330c182930fc6f0f12a7c2 (patch)
treeea69e119eb580b57a879baacd4c981c25c37dc0a /include
parent5f587967c4cbca02982d010c148947f19ff68e8e (diff)
Append user to group if user already exists instead of throwing
Diffstat (limited to 'include')
-rw-r--r--include/odhtdb/DataView.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/odhtdb/DataView.hpp b/include/odhtdb/DataView.hpp
index 2f22d83..b71b378 100644
--- a/include/odhtdb/DataView.hpp
+++ b/include/odhtdb/DataView.hpp
@@ -3,6 +3,7 @@
#include "types.hpp"
#include "Hash.hpp"
#include <unordered_map>
+#include <string>
namespace odhtdb
{
@@ -14,6 +15,8 @@ namespace odhtdb
bool operator == (const DataView &other) const;
bool operator != (const DataView &other) const;
+ std::string toString() const;
+
void *data;
usize size;
};