Ignore:
Timestamp:
Feb 3, 2007, 9:48:19 PM (19 years ago)
Author:
cinc
Message:

More doxygen tags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nom/class_c/nomclassmanager.c

    r208 r220  
    5151
    5252
     53/**
     54   \brief Function which implements the nomFindClassFromID() method of NOMClassMgr.
     55
     56   \remark This method isn't implemented yet.
     57 */
    5358NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromId(NOMClassMgr* nomSelf,
    5459                                                                   const CORBA_long classId,
     
    6570}
    6671
     72/**
     73   \brief Function which implements the nomFindClassFromName() method of NOMClassMgr.
     74 */
    6775NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromName(NOMClassMgr* nomSelf,
    6876                                                                     const CORBA_char * className,
     
    95103}
    96104
    97 /*
     105/**
    98106  This function is called when a class is (accidently) removed from our class list.
    99107  This may happen e.g. when a class is registered again using the same name. The old
     
    111119}
    112120
    113 /* We register mtabs as unique pointers to classes. It's possible to get every
    114    information from an mtab. */
     121/**
     122   \brief Function which implements the nomRegisterClass() method of NOMClassMgr.
     123
     124   We register mtabs as unique pointers to classes. It's possible to get every
     125   information from an mtab.
     126 */
    115127NOM_Scope void NOMLINK impl_NOMClassMgr_nomRegisterClass(NOMClassMgr* nomSelf, const gpointer classMtab,
    116128                                                         CORBA_Environment *ev)
     
    133145
    134146
    135 
     147/**
     148   \brief Function which implements the nomGetClassList() method of NOMClassMgr.
     149 */
    136150NOM_Scope PGData NOMLINK impl_NOMClassMgr_nomGetClassList(NOMClassMgr* nomSelf, CORBA_Environment *ev)
    137151{
     
    142156  return _gdataClassList;
    143157}
     158
    144159
    145160NOM_Scope gpointer NOMLINK impl_NOMClassMgr_nomGetClassInfoPtrFromName(NOMClassMgr* nomSelf,
     
    177192}
    178193
     194/**
     195   \brief Function which implements the nomRegisterMethod() method of NOMClassMgr.
     196 */
    179197NOM_Scope void NOMLINK impl_NOMClassMgr_nomRegisterMethod(NOMClassMgr* nomSelf,
    180198                                                          const gpointer classMtab,
     
    193211}
    194212
     213/**
     214   \brief Function which implements the nomIsObject() method of NOMClassMgr.
     215 */
    195216NOM_Scope CORBA_boolean NOMLINK impl_NOMClassMgr_nomIsObject(NOMClassMgr* nomSelf, const PNOMObject nomObject,
    196217                                                             CORBA_Environment *ev)
     
    213234  return 0;
    214235}
     236/**
     237   \brief Function which implements the nomInit() override NOMClassMgr.
     238 */
    215239NOM_Scope void NOMLINK impl_NOMClassMgr_nomInit(NOMClassMgr* nomSelf, CORBA_Environment *ev)
    216240{
Note: See TracChangeset for help on using the changeset viewer.