From 3c665b9fce99047b9bc531bde9dc060112cb4d64 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 18 May 2015 08:55:05 +0200
Subject: [PATCH] [FileIO] GMSHPoint based on Point instead of PointWithID.

---
 FileIO/GmshIO/GMSHPoint.cpp | 4 ++--
 FileIO/GmshIO/GMSHPoint.h   | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/FileIO/GmshIO/GMSHPoint.cpp b/FileIO/GmshIO/GMSHPoint.cpp
index d5de7150436..9ba30933319 100644
--- a/FileIO/GmshIO/GMSHPoint.cpp
+++ b/FileIO/GmshIO/GMSHPoint.cpp
@@ -17,12 +17,12 @@
 
 #include "GmshIO/GMSHPoint.h"
 
-namespace FileIO 
+namespace FileIO
 {
 namespace GMSH {
 
 GMSHPoint::GMSHPoint(GeoLib::Point const& pnt, size_t id, double mesh_density) :
-	GeoLib::PointWithID(pnt, id), _mesh_density(mesh_density)
+	GeoLib::Point(pnt, id), _mesh_density(mesh_density)
 {}
 
 void GMSHPoint::write(std::ostream &os) const
diff --git a/FileIO/GmshIO/GMSHPoint.h b/FileIO/GmshIO/GMSHPoint.h
index b82d0895832..32c641160e5 100644
--- a/FileIO/GmshIO/GMSHPoint.h
+++ b/FileIO/GmshIO/GMSHPoint.h
@@ -16,13 +16,13 @@
 #define GMSHPOINT_H_
 
 // GeoLib
-#include "PointWithID.h"
+#include "GeoLib/Point.h"
 
-namespace FileIO 
+namespace FileIO
 {
 namespace GMSH {
 
-class GMSHPoint : public GeoLib::PointWithID {
+class GMSHPoint : public GeoLib::Point {
 public:
 	GMSHPoint(GeoLib::Point const& pnt, std::size_t id, double mesh_density);
 	virtual ~GMSHPoint();
-- 
GitLab