aboutsummaryrefslogtreecommitdiff
path: root/src/Group.cpp
blob: 213a0bb799cd3291770038a43a1ffea60c304c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "../include/Group.hpp"
#include "../include/User.hpp"

namespace odhtdb
{
    Group::~Group()
    {
        for(User *user : users)
        {
            delete user;
        }
    }
}