Bläddra i källkod

Removed doxygen references to non-existing classes.

Sascha Zelzer 14 år sedan
förälder
incheckning
b286ca5dda
2 ändrade filer med 4 tillägg och 10 borttagningar
  1. 4 5
      Libs/Core/ctkPimpl.h
  2. 0 5
      Libs/Core/ctkSingleton.h

+ 4 - 5
Libs/Core/ctkPimpl.h

@@ -1,5 +1,4 @@
 /**
-\class ctkPimpl ctkPimpl
 \brief Utility macros for handling private implementations. It is in addition
        to QtGlobal: Q_DECLARE_PRIVATE, Q_DECLARE_PUBLIC,
        Q_D and Q_Q.
@@ -53,7 +52,7 @@ macro.
 // Qt includes
 #include <QtGlobal>
 
-/*! \relates ctkPimpl
+/*!
  * Define a public class constructor with no argument
  *
  * Also make sure the Pimpl is initalized
@@ -63,7 +62,7 @@ macro.
     {                                    \
     }
 
-/*! \relates ctkPimpl
+/*!
  * Define a public class constructor with one argument
  *
  * Also make sure the Pimpl is initalized
@@ -75,7 +74,7 @@ macro.
     {                                           \
     }
     
-/*! \relates ctkPimpl
+/*!
  * Define the setter in the public class.
  *
  * This should be put in the .cxx file of the public class. The parameter are
@@ -89,7 +88,7 @@ macro.
     d->_VARNAME =  var;                             \
   }
 
-/*! \relates ctkPimpl
+/*!
  * Define the setter in the public class.
  *
  * This should be put in the .cxx file of the public class. The parameter are

+ 0 - 5
Libs/Core/ctkSingleton.h

@@ -18,11 +18,6 @@
 
 =========================================================================*/
 
-/**
-\class ctkSingleton ctkSingleton
-\brief Utility macros allowing to declare a singleton
-
-*/
 
 #ifndef __ctkSingleton_h
 #define __ctkSingleton_h