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 <vtkTransformFilter.h>
|
||||
#include "advection/UVGrid.h"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include "AdvectionKernel.h"
|
||||
#include "UVGrid.h"
|
||||
#include <memory>
|
||||
|
||||
/**
|
||||
* Implementation of AdvectionKernel.
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include "AdvectionKernel.h"
|
||||
#include "UVGrid.h"
|
||||
#include <memory>
|
||||
|
||||
/**
|
||||
* Implementation of Advection kernel using RK4 integration
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
#define VTKBASE_SPAWNPOINTCALLBACK_H
|
||||
|
||||
|
||||
#include <memory>
|
||||
#include <vtkCallbackCommand.h>
|
||||
#include <vtkRenderWindowInteractor.h>
|
||||
#include <vtkPoints.h>
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
#define EGLYPHLAYER_H
|
||||
|
||||
#include "Layer.h"
|
||||
#include <memory>
|
||||
#include <vtkPolyData.h>
|
||||
|
||||
#include "../advection/UVGrid.h"
|
||||
|
|
|
|||
Loading…
Reference in New Issue