|
From: Frank V. C. <fr...@us...> - 2001-05-20 10:03:49
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv7546/clfw
Modified Files:
Ontology.hpp
Log Message:
Updates for 425600
Index: Ontology.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Ontology.hpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** Ontology.hpp 2001/04/21 21:39:01 1.8
--- Ontology.hpp 2001/05/20 10:03:46 1.9
***************
*** 123,126 ****
--- 123,147 ----
)
throw ( NullPointerException, DescriptorNotFound );
+
+ /**
+ Get the metaclass as defined by the name, in this ontology
+ @param Char pointer to class name (i.e. "Integer")
+ @returns MetaClass pointer to resolved class or null if
+ not found
+ @exception NullPointerException if argument is null
+ */
+
+ MetaClassPtr getClass( CharCptr )
+ throw ( NullPointerException );
+
+ /**
+ Get the metaclass as defined by the class id in this ontology
+ @param Char pointer to class name (i.e. "Integer")
+ @returns MetaClass pointer to resolved class or null
+ @exception NullPointerException if identifier is zero
+ */
+
+ MetaClassPtr getClass( UniversalIdentifierCref )
+ throw ( NullPointerException );
//
// Mutators
|