Changeset 369 for trunk/nom


Ignore:
Timestamp:
Jun 22, 2008, 9:46:20 PM (17 years ago)
Author:
cinc
Message:

Renamed nomGetCreatedClassName() to nomQueryCreatedClassName() because there is no copy returned. Added Test case class for NOMClassMgr to XCode project.

Location:
trunk/nom
Files:
3 edited

Legend:

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

    r357 r369  
    163163
    164164/**
    165    Function which implements the nomGetCreatedClassName() method of NOMClass.
     165   Function which implements the nomQueryCreatedClassName() method of NOMClass.
    166166*/
    167 NOM_Scope CORBA_string NOMLINK impl_NOMClass_nomGetCreatedClassName(NOMClass* nomSelf, CORBA_Environment *ev)
     167NOM_Scope CORBA_string NOMLINK impl_NOMClass_nomQueryCreatedClassName(NOMClass* nomSelf, CORBA_Environment *ev)
    168168{
    169169  NOMClassPriv* ncp;
  • trunk/nom/idl/nomcls.idl

    r294 r369  
    7676     This method is usually not overriden.
    7777
    78      \sa nomGetClassName()
     78     \sa nomQueryClassName()
    7979   */
    80   string nomGetCreatedClassName();
     80  string nomQueryCreatedClassName();
    8181
    8282  /**
  • trunk/nom/src/nomdebug.c

    r357 r369  
    6767      g_error("The object used to call the method %s is not a valid NOM object. ", chrMethodName);
    6868    else
    69       g_error("The object for which the method %s should be called is not valid for this method.\nThe object must be some instance of class %s (or of a subclass) but is a %s.", chrMethodName, NOMClass_nomGetCreatedClassName(nomClass, NULL),
     69      g_error("The object for which the method %s should be called is not valid for this method.\nThe object must be some instance of class %s (or of a subclass) but is a %s.", chrMethodName, NOMClass_nomQueryCreatedClassName(nomClass, NULL),
    7070                NOMObject_nomQueryClassName(nomObject, NULL));
    7171  }
Note: See TracChangeset for help on using the changeset viewer.