Browse Source

STYLE: Remove extra comment in ctkAbstract{Library, Object, QObject}Factory

Jean-Christophe Fillion-Robin 15 years ago
parent
commit
4859d01ebc

+ 0 - 5
Libs/Core/ctkAbstractLibraryFactory.h

@@ -45,12 +45,10 @@ public:
 
   void setSymbols(const QStringList& symbols);
 
-  //-----------------------------------------------------------------------------
   /// 
   /// Resolve symbols
   void resolve();
   
-  //-----------------------------------------------------------------------------
   /// 
   /// Get symbol address
   void* symbolAddress(const QString& symbol)const;
@@ -67,18 +65,15 @@ template<typename BaseClassType, typename FactoryItemType>
 class ctkAbstractLibraryFactory : public ctkAbstractFactory<BaseClassType>
 {
 public:
-  //-----------------------------------------------------------------------------
   /// 
   /// Constructor
   explicit ctkAbstractLibraryFactory();
   virtual ~ctkAbstractLibraryFactory();
 
-  //-----------------------------------------------------------------------------
   /// 
   /// Set the list of symbols
   void setSymbols(const QStringList& symbols);
 
-  //-----------------------------------------------------------------------------
   /// 
   /// Register a plugin in the factory
   virtual bool registerLibrary(const QFileInfo& file, QString& key);

+ 0 - 2
Libs/Core/ctkAbstractObjectFactory.h

@@ -58,13 +58,11 @@ template<typename BaseClassType>
 class ctkAbstractObjectFactory : public ctkAbstractFactory<BaseClassType>
 {
 public:
-  //-----------------------------------------------------------------------------
   /// 
   /// Constructor/Desctructor
   explicit ctkAbstractObjectFactory();
   virtual ~ctkAbstractObjectFactory();
 
-  //-----------------------------------------------------------------------------
   /// 
   /// Register an object in the factory
   template<typename ClassType>

+ 0 - 4
Libs/Core/ctkAbstractQObjectFactory.h

@@ -32,23 +32,19 @@ template<typename BaseClassType>
 class ctkAbstractQObjectFactory : public ctkAbstractObjectFactory<BaseClassType>
 {
 public:
-  //-----------------------------------------------------------------------------
   /// 
   /// Constructor/Desctructor
   explicit ctkAbstractQObjectFactory();
   virtual ~ctkAbstractQObjectFactory();
 
-  //----------------------------------------------------------------------------
   /// 
   /// Create an instance of the object
   virtual BaseClassType * instantiate(const QString& itemKey);
 
-  //----------------------------------------------------------------------------
   /// 
   /// Uninstanciate the object
   virtual void uninstantiate(const QString& itemKey);
 
-  //-----------------------------------------------------------------------------
   /// 
   /// Register an object in the factory
   /// Note: The parameter 'key' passed by reference will be updated with the associated object name