diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-11-09 09:44:08 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-08-18 23:25:46 +0200 |
commit | d5614b905be6d76803330c182930fc6f0f12a7c2 (patch) | |
tree | ea69e119eb580b57a879baacd4c981c25c37dc0a /include | |
parent | 5f587967c4cbca02982d010c148947f19ff68e8e (diff) |
Append user to group if user already exists instead of throwing
Diffstat (limited to 'include')
-rw-r--r-- | include/odhtdb/DataView.hpp | 3 |
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; }; |