From bb41eedf505ca9ae86915deae9f20d45d461d723 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Fri, 2 Oct 2015 10:30:13 +0200
Subject: [PATCH] [GL] Dynamic type checks for classes Station and Borehole.

---
 GeoLib/Station.cpp         | 6 ++++++
 GeoLib/Station.h           | 1 +
 GeoLib/StationBorehole.cpp | 8 ++++++++
 GeoLib/StationBorehole.h   | 3 +++
 4 files changed, 18 insertions(+)

diff --git a/GeoLib/Station.cpp b/GeoLib/Station.cpp
index 3ebd2629614..c8f0d45570d 100644
--- a/GeoLib/Station.cpp
+++ b/GeoLib/Station.cpp
@@ -75,5 +75,11 @@ Station* Station::createStation(const std::string &name, double x, double y, dou
 	return station;
 }
 
+bool isStation(GeoLib::Point const* pnt)
+{
+	GeoLib::Station const* bh(dynamic_cast<GeoLib::Station const*>(pnt));
+	return bh != nullptr;
+}
+
 } // namespace
 
diff --git a/GeoLib/Station.h b/GeoLib/Station.h
index 218cd2e218f..b269b8c694f 100644
--- a/GeoLib/Station.h
+++ b/GeoLib/Station.h
@@ -103,6 +103,7 @@ private:
 
 };
 
+bool isStation(GeoLib::Point const* pnt);
 } // namespace
 
 #endif // GEO_STATION_H
diff --git a/GeoLib/StationBorehole.cpp b/GeoLib/StationBorehole.cpp
index b0cc8e61aff..338d84c1700 100644
--- a/GeoLib/StationBorehole.cpp
+++ b/GeoLib/StationBorehole.cpp
@@ -292,4 +292,12 @@ void StationBorehole::addSoilLayer ( double x, double y, double z, const std::st
 	_profilePntVec.push_back (new Point (x, y, z));
 	_soilName.push_back(soil_name);
 }
+
+bool isBorehole(GeoLib::Point const* pnt)
+{
+	GeoLib::StationBorehole const* bh(
+		dynamic_cast<GeoLib::StationBorehole const*>(pnt));
+	return bh != nullptr;
+}
+
 } // namespace
diff --git a/GeoLib/StationBorehole.h b/GeoLib/StationBorehole.h
index 9fa7b36bfe8..5c5ae62e3ad 100644
--- a/GeoLib/StationBorehole.h
+++ b/GeoLib/StationBorehole.h
@@ -116,6 +116,9 @@ private:
 	/// Contains the points for the lower boundaries of all layers
 	std::vector<Point*> _profilePntVec;
 };
+
+bool isBorehole(GeoLib::Point const* pnt);
+
 } // namespace
 
 #endif // GEO_STATIONBOREHOLE_H
-- 
GitLab