Skip to content
Snippets Groups Projects
Commit e83a24f5 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Merge pull request #760 from norihiro-w/fix-msh-includes

fix includes in MeshLib and MeshGeoToolsLib
parents 590b7788 88dd43c8
No related branches found
No related tags found
No related merge requests found
Showing
with 66 additions and 44 deletions
......@@ -9,16 +9,16 @@
#include "AppendLinesAlongPolyline.h"
// ThirdParty/logog
#include "logog/include/logog.hpp"
#include <logog/include/logog.hpp>
// MeshLib
#include "Mesh.h"
#include "GeoLib/Polyline.h"
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
#include "Elements/Line.h"
#include "Elements/Element.h"
#include "MeshEnums.h"
#include "MeshEditing/DuplicateMeshComponents.h"
#include "MeshLib/Elements/Line.h"
#include "MeshLib/Elements/Element.h"
#include "MeshLib/MeshEnums.h"
#include "MeshLib/MeshEditing/DuplicateMeshComponents.h"
#include "MeshGeoToolsLib/MeshNodesAlongPolyline.h"
......
......@@ -12,19 +12,19 @@
*
*/
// ThirdParty/logog
#include "logog/include/logog.hpp"
#include "GeoMapper.h"
#include <algorithm>
#include <numeric>
#include <logog/include/logog.hpp>
#include "FileIO/AsciiRasterInterface.h"
#include "FileIO/readMeshFromFile.h"
#include "GeoLib/AABB.h"
#include "GeoLib/AnalyticalGeometry.h"
#include "GeoLib/GEOObjects.h"
#include "GeoLib/Raster.h"
#include "GeoLib/StationBorehole.h"
......
......@@ -18,11 +18,9 @@
#include <cstddef>
#include <vector>
#include "GEOObjects.h"
#include "Point.h"
#include "Grid.h"
#include "GeoLib/Point.h"
#include "GeoLib/Grid.h"
// MathLib
#include "MathLib/Point3d.h"
namespace MeshLib {
......
......@@ -12,7 +12,7 @@
#include "HeuristicSearchLength.h"
// ThirdParty/logog
#include "logog/include/logog.hpp"
#include <logog/include/logog.hpp>
#include "MeshLib/Elements/Element.h"
......
......@@ -14,6 +14,11 @@
#include "MeshGeoToolsLib/SearchLength.h"
namespace MeshLib
{
class Mesh;
}
namespace MeshGeoToolsLib
{
......
......@@ -11,13 +11,16 @@
#include "MeshGeoToolsLib/MeshNodeSearcher.h"
// ThirdParty/logog
#include "logog/include/logog.hpp"
#include <logog/include/logog.hpp>
// GeoLib
#include "GeoLib/Point.h"
#include "GeoLib/Polyline.h"
// MeshLib
#include "MeshLib/Elements/Element.h"
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
// MeshGeoToolsLib
#include "MeshGeoToolsLib/HeuristicSearchLength.h"
......
......@@ -13,21 +13,27 @@
#include <memory>
#include <vector>
#include "boost/optional.hpp"
#include <boost/optional.hpp>
// GeoLib
#include "GeoLib/Point.h"
#include "GeoLib/Polyline.h"
#include "GeoLib/Grid.h"
// MeshLib
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
// MeshGeoToolsLib
#include "MeshGeoToolsLib/SearchLength.h"
// forward declaration
namespace GeoLib
{
class Point;
class Polyline;
}
namespace MeshLib
{
class Mesh;
class Node;
}
namespace MeshGeoToolsLib
{
class MeshNodesAlongPolyline;
......
......@@ -10,16 +10,16 @@
* http://www.opengeosys.org/LICENSE.txt
*/
// BaseLib
#include "quicksort.h"
// MeshGeoToolsLib
#include "MeshNodesAlongPolyline.h"
#include "MathTools.h"
#include <algorithm>
#include "BaseLib/quicksort.h"
#include "MathLib/MathTools.h"
#include "GeoLib/Polyline.h"
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
namespace MeshGeoToolsLib
{
MeshNodesAlongPolyline::MeshNodesAlongPolyline(
......
......@@ -15,11 +15,15 @@
#include <vector>
// GeoLib
#include "Polyline.h"
namespace GeoLib
{
class Polyline;
}
// MeshLib
#include "MeshLib/Node.h"
namespace MeshLib
{
class Mesh;
}
namespace MeshGeoToolsLib
{
......
......@@ -14,9 +14,11 @@
#include <algorithm>
#include "quicksort.h"
#include "MathTools.h"
#include "BaseLib/quicksort.h"
#include "MathLib/MathTools.h"
#include "GeoLib/Surface.h"
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
namespace MeshGeoToolsLib
{
......
......@@ -15,11 +15,15 @@
#include <vector>
// GeoLib
#include "Surface.h"
namespace GeoLib
{
class Surface;
}
// MeshLib
#include "MeshLib/Node.h"
namespace MeshLib
{
class Mesh;
}
namespace MeshGeoToolsLib
{
......
......@@ -12,8 +12,6 @@
#ifndef SEARCHLENGTH_H_
#define SEARCHLENGTH_H_
#include "MeshLib/Mesh.h"
namespace MeshGeoToolsLib
{
......
......@@ -16,8 +16,8 @@
#include <string>
#include <vector>
#include "Location.h"
#include "BaseLib/excludeObjectCopy.h"
#include "Location.h"
namespace MeshLib
{
......
......@@ -12,6 +12,7 @@
#include "LinearInterpolationAlongPolyline.h"
#include "GeoLib/Polyline.h"
#include "MeshLib/Mesh.h"
#include "MeshGeoToolsLib/MeshNodesAlongPolyline.h"
......
......@@ -12,6 +12,7 @@
#include <numeric>
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
#include "MeshLib/Elements/Element.h"
#include "MeshLib/MeshGenerators/MeshGenerator.h"
#include "MeshLib/MeshSearcher.h"
......
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