From 806bc53176e8ed216ba5db95bde5878832332393 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Mon, 8 Jul 2013 20:00:31 +0300 Subject: [PATCH] Add a non-const overload of Layout3D::get_catalogue This is necessary for automatic loading of resources. --- source/3d/layout.h | 1 + 1 file changed, 1 insertion(+) diff --git a/source/3d/layout.h b/source/3d/layout.h index 908751a..df414f2 100644 --- a/source/3d/layout.h +++ b/source/3d/layout.h @@ -33,6 +33,7 @@ public: ~Layout3D(); Layout &get_layout() const { return layout; } + Catalogue3D &get_catalogue() { return catalogue; } const Catalogue3D &get_catalogue() const { return catalogue; } void get_bounds(Vector &, Vector &) const; -- 2.43.0