Skip to content
Snippets Groups Projects
Tree.cpp 144 B
Newer Older
#include "Tree.hpp"

namespace nbody {
	Tree::Tree() {
		this->root = NULL;
	}

	Tree::~Tree() {
		delete this->root;
		this->root = NULL;
	}
}