aboutsummaryrefslogtreecommitdiff
path: root/src/Group.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-01-28 07:35:37 +0100
committerdec05eba <dec05eba@protonmail.com>2020-08-18 23:25:12 +0200
commitbd2bd91ac947a7b1f6d097d7efa4b0ab2041d4db (patch)
treed934d57f39c8ce321688308317476baacd4efd83 /src/Group.cpp
parent2ca8686eabc3b624c9981509c161b9be6af439cb (diff)
Add some files...
Diffstat (limited to 'src/Group.cpp')
-rw-r--r--src/Group.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Group.cpp b/src/Group.cpp
new file mode 100644
index 0000000..213a0bb
--- /dev/null
+++ b/src/Group.cpp
@@ -0,0 +1,13 @@
+#include "../include/Group.hpp"
+#include "../include/User.hpp"
+
+namespace odhtdb
+{
+ Group::~Group()
+ {
+ for(User *user : users)
+ {
+ delete user;
+ }
+ }
+} \ No newline at end of file