added memory include header to make this compilable with glibc
This commit is contained in:
parent
40f6c0da6e
commit
357b12e072
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include <memory>
|
||||||
#include <vtkCamera.h>
|
#include <vtkCamera.h>
|
||||||
#include <vtkTransformFilter.h>
|
#include <vtkTransformFilter.h>
|
||||||
#include "advection/UVGrid.h"
|
#include "advection/UVGrid.h"
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
#include "AdvectionKernel.h"
|
#include "AdvectionKernel.h"
|
||||||
#include "UVGrid.h"
|
#include "UVGrid.h"
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implementation of AdvectionKernel.
|
* Implementation of AdvectionKernel.
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
#include "AdvectionKernel.h"
|
#include "AdvectionKernel.h"
|
||||||
#include "UVGrid.h"
|
#include "UVGrid.h"
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implementation of Advection kernel using RK4 integration
|
* Implementation of Advection kernel using RK4 integration
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
#define VTKBASE_SPAWNPOINTCALLBACK_H
|
#define VTKBASE_SPAWNPOINTCALLBACK_H
|
||||||
|
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
#include <vtkCallbackCommand.h>
|
#include <vtkCallbackCommand.h>
|
||||||
#include <vtkRenderWindowInteractor.h>
|
#include <vtkRenderWindowInteractor.h>
|
||||||
#include <vtkPoints.h>
|
#include <vtkPoints.h>
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
#define EGLYPHLAYER_H
|
#define EGLYPHLAYER_H
|
||||||
|
|
||||||
#include "Layer.h"
|
#include "Layer.h"
|
||||||
|
#include <memory>
|
||||||
#include <vtkPolyData.h>
|
#include <vtkPolyData.h>
|
||||||
|
|
||||||
#include "../advection/UVGrid.h"
|
#include "../advection/UVGrid.h"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue