Skip to content
Snippets Groups Projects
Commit 1a770625 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

mv PVDFile to MeshLib/IO/VtkIO

parent 1ff4fc43
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include <limits> #include <limits>
#include <logog/include/logog.hpp> #include <logog/include/logog.hpp>
namespace NumLib namespace MeshLib
{ {
namespace IO namespace IO
{ {
...@@ -43,4 +43,4 @@ void PVDFile::addVTUFile(const std::string &vtu_fname, double timestep) ...@@ -43,4 +43,4 @@ void PVDFile::addVTUFile(const std::string &vtu_fname, double timestep)
} }
} // IO } // IO
} // NumLib } // MeshLib
...@@ -7,13 +7,13 @@ ...@@ -7,13 +7,13 @@
* *
*/ */
#ifndef FILEIO_VTK_PVDFILE_H #ifndef MESHLIB_VTKIO_PVDFILE_H
#define FILEIO_VTK_PVDFILE_H #define MESHLIB_VTKIO_PVDFILE_H
#include <string> #include <string>
#include <vector> #include <vector>
namespace NumLib namespace MeshLib
{ {
namespace IO namespace IO
{ {
...@@ -36,6 +36,6 @@ private: ...@@ -36,6 +36,6 @@ private:
}; };
} // namespace IO } // namespace IO
} // namespace NumLib } // namespace MeshLib
#endif // FILEIO_VTK_PVDFILE_H #endif // MESHLIB_VTKIO_PVDFILE_H
...@@ -28,8 +28,6 @@ set(SOURCES ${SOURCES} ${SOURCES_ODESOLVER}) ...@@ -28,8 +28,6 @@ set(SOURCES ${SOURCES} ${SOURCES_ODESOLVER})
GET_SOURCE_FILES(SOURCES_EXTRAPOLATION Extrapolation) GET_SOURCE_FILES(SOURCES_EXTRAPOLATION Extrapolation)
set(SOURCES ${SOURCES} ${SOURCES_EXTRAPOLATION}) set(SOURCES ${SOURCES} ${SOURCES_EXTRAPOLATION})
GET_SOURCE_FILES(SOURCES_IO_VTK IO/VtkIO)
set(SOURCES ${SOURCES} ${SOURCES_IO_VTK})
# Create the library # Create the library
add_library(NumLib ${SOURCES}) add_library(NumLib ${SOURCES})
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#define PROCESSLIB_OUTPUT_H #define PROCESSLIB_OUTPUT_H
#include "BaseLib/ConfigTree.h" #include "BaseLib/ConfigTree.h"
#include "NumLib/IO/VtkIO/PVDFile.h" #include "MeshLib/IO/VtkIO/PVDFile.h"
#include "Process.h" #include "Process.h"
namespace ProcessLib namespace ProcessLib
...@@ -78,7 +78,7 @@ private: ...@@ -78,7 +78,7 @@ private:
{} {}
const unsigned process_index; const unsigned process_index;
NumLib::IO::PVDFile pvd_file; MeshLib::IO::PVDFile pvd_file;
}; };
Output(std::string const& prefix) Output(std::string const& prefix)
......
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