[Orxonox-commit 5877] r10537 - code/branches/core7/src/libraries/core/class

landauf at orxonox.net landauf at orxonox.net
Sun Jun 7 10:57:00 CEST 2015


Author: landauf
Date: 2015-06-07 10:56:59 +0200 (Sun, 07 Jun 2015)
New Revision: 10537

Modified:
   code/branches/core7/src/libraries/core/class/Identifier.h
Log:
made some functions private in ClassIdentifier

Modified: code/branches/core7/src/libraries/core/class/Identifier.h
===================================================================
--- code/branches/core7/src/libraries/core/class/Identifier.h	2015-06-06 22:12:20 UTC (rev 10536)
+++ code/branches/core7/src/libraries/core/class/Identifier.h	2015-06-07 08:56:59 UTC (rev 10537)
@@ -288,12 +288,6 @@
 
             bool initializeObject(T* object);
 
-            void setConfigValues(T* object, Configurable*) const;
-            void setConfigValues(T* object, Identifiable*) const;
-
-            void addObjectToList(T* object, Listable*);
-            void addObjectToList(T* object, Identifiable*);
-
             virtual void updateConfigValues(bool updateChildren = true) const;
 
             virtual const std::type_info& getTypeInfo()
@@ -307,6 +301,12 @@
         private:
             ClassIdentifier(const ClassIdentifier<T>& identifier) {}    // don't copy
 
+            void setConfigValues(T* object, Configurable*) const;
+            void setConfigValues(T* object, Identifiable*) const;
+
+            void addObjectToList(T* object, Listable*);
+            void addObjectToList(T* object, Identifiable*);
+
             void updateConfigValues(bool updateChildren, Listable*) const;
             void updateConfigValues(bool updateChildren, Identifiable*) const;
 




More information about the Orxonox-commit mailing list