From: Mikko Rasa Date: Mon, 8 Jul 2013 17:00:31 +0000 (+0300) Subject: Add a non-const overload of Layout3D::get_catalogue X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=806bc53176e8ed216ba5db95bde5878832332393;p=r2c2.git Add a non-const overload of Layout3D::get_catalogue This is necessary for automatic loading of resources. --- 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;