#include "Tree.hpp" namespace nbody { Tree::Tree() { this->root = NULL; } Tree::~Tree() { delete this->root; this->root = NULL; } }