Skip to content
Snippets Groups Projects
Commit a0ecbc39 authored by Karsten Rink's avatar Karsten Rink
Browse files

Merge branch 'DataExplorerIntegration' of github.com:ufz/ogs into DataExplorerIntegration

parents 64830c21 929efda7
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#include "XmlStnInterface.h" #include "XmlStnInterface.h"
#include "XmlCndInterface.h" #include "XmlCndInterface.h"
#include "MeshIO.h" #include "Legacy/MeshIO.h"
#include "Mesh.h" #include "Mesh.h"
#include <QFileInfo> #include <QFileInfo>
......
...@@ -47,7 +47,7 @@ const MeshLib::Mesh* ProjectData::getMesh(const std::string &name) const ...@@ -47,7 +47,7 @@ const MeshLib::Mesh* ProjectData::getMesh(const std::string &name) const
bool ProjectData::removeMesh(const std::string &name) bool ProjectData::removeMesh(const std::string &name)
{ {
for (std::vector<MeshLib::Mesh*>::const_iterator it = _msh_vec.begin(); it != _msh_vec.end(); ++it) for (std::vector<MeshLib::Mesh*>::iterator it = _msh_vec.begin(); it != _msh_vec.end(); ++it)
if (name.compare((*it)->getName()) == 0) if (name.compare((*it)->getName()) == 0)
{ {
delete *it; delete *it;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "Node.h" #include "Node.h"
#include "Elements/Element.h" #include "Elements/Element.h"
#include "Mesh.h" #include "Mesh.h"
#include "MeshIO.h" #include "Legacy/MeshIO.h"
#include "MeshCoarsener.h" #include "MeshCoarsener.h"
int main(int argc, char *argv[]) int main(int argc, char *argv[])
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#include "Node.h" #include "Node.h"
#include "Elements/Element.h" #include "Elements/Element.h"
#include "Mesh.h" #include "Mesh.h"
#include "MeshIO.h" #include "Legacy/MeshIO.h"
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
......
...@@ -85,7 +85,7 @@ ENDIF() ...@@ -85,7 +85,7 @@ ENDIF()
IF(VTK_NETCDF_FOUND) IF(VTK_NETCDF_FOUND)
ADD_DEFINITIONS(-DVTK_NETCDF_FOUND) ADD_DEFINITIONS(-DVTK_NETCDF_FOUND)
INCLUDE_DIRECTORIES(${VTK_NETCDF_FOUND} ${VTK_DIR}/Utilities) INCLUDE_DIRECTORIES(${VTK_NETCDF_FOUND} ${VTK_DIR}/Utilities ${VTK_NETCDF_FOUND}/../..)
ELSE() ELSE()
SET(NETCDF_CXX TRUE) SET(NETCDF_CXX TRUE)
FIND_PACKAGE(NetCDF) FIND_PACKAGE(NetCDF)
......
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