From cc1b72c9d228d1e81a26a0c48222f148e58bafae Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <github@naumov.de>
Date: Sat, 26 May 2018 16:06:22 +0200
Subject: [PATCH] [GL] Read access to vector<*Vec> w/o using name.

---
 GeoLib/GEOObjects.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/GeoLib/GEOObjects.h b/GeoLib/GEOObjects.h
index 3699ad6d960..e6e4cfe92f5 100644
--- a/GeoLib/GEOObjects.h
+++ b/GeoLib/GEOObjects.h
@@ -278,6 +278,13 @@ public:
     /// Checks if the point vector with the given name is referenced in a polyline- or surface vector.
     bool isPntVecUsed (const std::string &name) const;
 
+    /// Read access to points w/o using a name.
+    std::vector<PointVec*> const& getPoints() const { return _pnt_vecs; }
+    /// Read access to polylines w/o using a name.
+    std::vector<PolylineVec*> const& getPolylines() const { return _ply_vecs; }
+    /// Read access to surfaces w/o using a name.
+    std::vector<SurfaceVec*> const& getSurfaces() const { return _sfc_vecs; }
+
     /**
      * vector manages pointers to PointVec objects
      */
-- 
GitLab