- Timestamp:
- Jan 13, 2007, 12:33:14 PM (19 years ago)
- Location:
- trunk/nom
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomobj.c
r179 r185 85 85 } 86 86 87 /* 88 Gets the class object of this object. 89 */ 87 90 NOM_Scope PNOMClass NOMLINK impl_NOMObject_nomGetClass(NOMObject* nomSelf, CORBA_Environment *ev) 88 91 { … … 94 97 /* 95 98 Create a new class of the kind the caller is. This method ensures that subclasses 96 are properly handled without the need to override this classin every subclass.99 are properly handled without the need to override this method in every subclass. 97 100 */ 98 101 NOM_Scope PNOMObject NOMLINK impl_NOMObject_new(NOMObject* nomSelf, CORBA_Environment *ev) -
trunk/nom/exports.def
r159 r185 8 8 NOMCalloc @3 9 9 NOMFree 10 ; somIsObj10 nomIsObj 11 11 12 12 nomInitGarbageCollection -
trunk/nom/idl/nombase.idl
r179 r185 72 72 native gpointer; 73 73 native PGData; 74 native PGTree; 75 74 76 native nomId; /* This is a typedef for a GQuark */ 77 75 78 #endif /* NOMBASE_IDL_INCLUDED */ 76 79 -
trunk/nom/include/nom.h
r179 r185 109 109 typedef GQuark nomId; 110 110 111 typedef GData* PGData;111 typedef GData* PGData; 112 112 typedef gulong* pgulong; 113 typedef GTree* PGTree; 113 114 114 115 typedef gchar **nomID; /* This will be reomoved later. Don't use anymore */ -
trunk/nom/include/nomapi.h
r94 r185 154 154 gulong ulMajorVersion, 155 155 gulong ulMinorVersion); 156 157 //#define nomIsObj(a) ((a)!= 0) 156 158 #endif /* NOMAPI_H_INCLUDED */ 157 159 -
trunk/nom/include/nomtk.h
r160 r185 68 68 NOMEXTERN boolean NOMLINK NOMFree(const nomToken memPtr); 69 69 NOMEXTERN nomToken NOMLINK NOMCalloc(const ULONG num, const ULONG size); 70 NOMEXTERN boolean NOMLINK nomIsObj(NOMObject * nomObj);70 NOMEXTERN gboolean NOMLINK nomIsObj(NOMObject * nomObj); 71 71 NOMEXTERN int NOMLINK nomPrintf(string chrFormat, ...); 72 72 NOMEXTERN NOMClassMgr * NOMLINK nomEnvironmentNew (void); -
trunk/nom/src/nomtkinit.c
r158 r185 69 69 70 70 /* 71 71 Some of these functions should be moved to other source files... 72 72 */ 73 74 NOMEXTERN gboolean NOMLINK nomIsObj(NOMObject*nomObj) 75 { 76 if(!nomObj) 77 return FALSE; 78 79 return TRUE; 80 } 81 73 82 NOMEXTERN int NOMLINK nomPrintf(string chrFormat, ...) 74 83 {
Note:
See TracChangeset
for help on using the changeset viewer.