Skip to content
Snippets Groups Projects
BarnesHutTree.hpp 259 B
Newer Older
#ifndef BARNES_HUT_TREE_HPP
#define BARNES_HUT_TREE_HPP

#include "Tree.hpp"

namespace nbody {
	class BarnesHutTree : public Tree {
	protected:

	public:
		BarnesHutTree();
		virtual ~BarnesHutTree();
		virtual void build(vector<Body> bodies);
	};
}

#endif