Ignore:
Timestamp:
Feb 3, 2007, 11:01:41 PM (19 years ago)
Author:
cinc
Message:

Changes...

File:
1 edited

Legend:

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

    r220 r221  
    5656   \remark This method isn't implemented yet.
    5757 */
    58 NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromId(NOMClassMgr* nomSelf,
    59                                                                    const CORBA_long classId,
     58NOM_Scope PNOMObject NOMLINK impl_NOMClassMgr_nomFindClassFromId(NOMClassMgr* nomSelf,
     59                                                                 const CORBA_long classId,
     60                                                                 const CORBA_long ulMajorVersion,
     61                                                                 const CORBA_long ulMinorVersion,
     62                                                                 CORBA_Environment *ev)
     63{
     64  /*  NOMClassMgrData *nomThis = NOMClassMgrGetData(nomSelf); */
     65  CORBA_Object nomRetval;
     66
     67  nomPrintf("%s: %s not implemented yet (line %d)\n", __FILE__, __FUNCTION__, __LINE__);
     68  nomRetval=NULL;
     69  return nomRetval;
     70}
     71
     72/**
     73   \brief Function which implements the nomFindClassFromName() method of NOMClassMgr.
     74 */
     75NOM_Scope PNOMObject NOMLINK impl_NOMClassMgr_nomFindClassFromName(NOMClassMgr* nomSelf,
     76                                                                   const CORBA_char * className,
    6077                                                                   const CORBA_long ulMajorVersion,
    6178                                                                   const CORBA_long ulMinorVersion,
    6279                                                                   CORBA_Environment *ev)
    63 {
    64   /*  NOMClassMgrData *nomThis = NOMClassMgrGetData(nomSelf); */
    65   CORBA_Object nomRetval;
    66 
    67   nomPrintf("%s: %s not implemented yet (line %d)\n", __FILE__, __FUNCTION__, __LINE__);
    68   nomRetval=NULL;
    69   return nomRetval;
    70 }
    71 
    72 /**
    73    \brief Function which implements the nomFindClassFromName() method of NOMClassMgr.
    74  */
    75 NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromName(NOMClassMgr* nomSelf,
    76                                                                      const CORBA_char * className,
    77                                                                      const CORBA_long ulMajorVersion,
    78                                                                      const CORBA_long ulMinorVersion,
    79                                                                      CORBA_Environment *ev)
    8080{
    8181  CORBA_Object nomRetval=NULLHANDLE;
     
    144144
    145145
    146 
    147146/**
    148147   \brief Function which implements the nomGetClassList() method of NOMClassMgr.
     
    159158
    160159NOM_Scope gpointer NOMLINK impl_NOMClassMgr_nomGetClassInfoPtrFromName(NOMClassMgr* nomSelf,
    161                                                                        const CORBA_char * className, CORBA_Environment *ev)
     160                                                                       const CORBA_char * className,
     161                                                                       CORBA_Environment *ev)
    162162{
    163163  nomMethodTab * mtab;
     
    176176
    177177
    178 /*
     178/**
    179179  This function is called when a method is (accidently) removed from our list.
    180180  This may happen e.g. when a class is registered again using the same name. The old
Note: See TracChangeset for help on using the changeset viewer.