|
From: Frank V. C. <fr...@us...> - 2001-04-11 01:39:28
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv11136/clfw
Modified Files:
Ontology.hpp
Log Message:
Getting ready for gdbm in the schema catalog implementation
Index: Ontology.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Ontology.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** Ontology.hpp 2000/11/15 23:07:20 1.6
--- Ontology.hpp 2001/04/11 01:39:25 1.7
***************
*** 89,92 ****
--- 89,106 ----
CharCptr getDomainName( void ) const;
+ /**
+ Get the metaclass as defined by the class and ontology
+ names
+ @param Char pointer to class name (i.e. "Integer")
+ @param Char pointer to ontology name (i.e. "MySpace")
+ defaults to "corelinux" in implementation
+ @returns MetaClass pointer to resolved class
+ @exception NullPointerException and/or
+ DescriptorNotFoundException if not resolvable
+ */
+
+ static MetaClassPtr getClassFor( CharCptr, CharCptr ontology=NULLPTR )
+ throw ( NullPointerException, DescriptorNotFound );
+
//
// Mutators
|