* Second to know, the Factory class is a <a href="http://stackoverflow.com/questions/1008019/c-singleton-design-pattern#1008289">singleton</a>: it can only exist once in your application.
* Second to know, the Factory class is a <a href="http://stackoverflow.com/questions/1008019/c-singleton-design-pattern#1008289">singleton</a>: it can only exist once in your application.
...
@@ -103,7 +103,7 @@ namespace wolf
...
@@ -103,7 +103,7 @@ namespace wolf
* You can then call the methods you like, e.g. to create a landmark, you use:
* You can then call the methods you like, e.g. to create a landmark, you use:
*
*
* \code
* \code
* LandmarkFactory::get().create(...); // see below for creating objects ...
* FactoryLandmark::get().create(...); // see below for creating objects ...
* \endcode
* \endcode
*
*
* #### Write creator methods (in your derived object classes)
* #### Write creator methods (in your derived object classes)
...
@@ -137,7 +137,7 @@ namespace wolf
...
@@ -137,7 +137,7 @@ namespace wolf
* that knows how to create your specific object, e.g.:
* that knows how to create your specific object, e.g.: