From ef67790d2c19642737c8df80267a26b7f103b78f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 2 Jan 2018 16:24:31 -0800 Subject: [PATCH] Implemented #54 (more typeinfo visibility) --- src/db/db/dbUserObject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/db/db/dbUserObject.h b/src/db/db/dbUserObject.h index 0aedfde0c..541ff9ed5 100644 --- a/src/db/db/dbUserObject.h +++ b/src/db/db/dbUserObject.h @@ -54,7 +54,7 @@ DB_PUBLIC unsigned int get_unique_user_object_class_id (); * in order to be able to be put into a user_object. */ template -class user_object_base +class DB_PUBLIC_TEMPLATE user_object_base { public: typedef C coord_type; @@ -399,7 +399,7 @@ typedef user_object DUserObject; * @brief The base object of a factory-instantiable object */ template -class user_object_factory_base +class DB_PUBLIC_TEMPLATE user_object_factory_base { public: user_object_factory_base () { } @@ -414,7 +414,7 @@ public: * This implements a factory for objects of class X with coordinate base type C. */ template -class user_object_factory_impl +class DB_PUBLIC_TEMPLATE user_object_factory_impl : public user_object_factory_base { public: