Commit c838a9fd authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

use forward declarations for better namespace hygiene

parent 2428c1c1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
#include <cmath>
#include <cstring>
#include <cstdlib>
#include "voro++.hh"
#include "compute_voronoi_atom.h"
#include "atom.h"
#include "group.h"
+6 −1
Original line number Diff line number Diff line
@@ -21,7 +21,12 @@ ComputeStyle(voronoi/atom,ComputeVoronoi)
#define LMP_COMPUTE_VORONOI_H

#include "compute.h"
#include "voro++.hh"

namespace voro {
  class container;
  class container_poly;
  class voronoicell_neighbor;
}

namespace LAMMPS_NS {