Skip to content
Snippets Groups Projects
Commit ce38e506 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

Merge remote-tracking branch 'gl/brad.king/revert-RemoveBoostForwardDeclarations' into release

* gl/brad.king/revert-RemoveBoostForwardDeclarations:
  Revert "Remove forward boosts declarations"
parents a50992fa eaf0888b
No related merge requests found
......@@ -224,6 +224,15 @@ class vtkVariant;
class vtkVariantArray;
//BTX
// Forward declare some boost stuff even if boost wrappers
// are turned off.
namespace boost
{
class vtk_edge_iterator;
class vtk_out_edge_pointer_iterator;
class vtk_in_edge_pointer_iterator;
}
// Edge structures.
struct vtkEdgeBase
{
......@@ -676,6 +685,9 @@ protected:
friend class vtkEdgeListIterator;
friend class vtkInEdgeIterator;
friend class vtkOutEdgeIterator;
friend class boost::vtk_edge_iterator;
friend class boost::vtk_in_edge_pointer_iterator;
friend class boost::vtk_out_edge_pointer_iterator;
//ETX
// Description:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment