|
From: Frank V. C. <fr...@us...> - 2000-11-10 04:42:51
|
Update of /cvsroot/corelinux/clfw/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv14166/clfw Modified Files: Makefile.am UniversalIdentifier.hpp Added Files: Ontology.hpp Log Message: 116737 Ontology work ***** Error reading new file: (2, 'No such file or directory') Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/Makefile.am,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** Makefile.am 2000/10/25 22:31:22 1.15 --- Makefile.am 2000/11/10 04:42:48 1.16 *************** *** 31,34 **** --- 31,35 ---- UnsignedInteger.hpp \ UnsignedShortInteger.hpp \ + Ontology.hpp \ Makefile.am Index: UniversalIdentifier.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/UniversalIdentifier.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** UniversalIdentifier.hpp 2000/10/03 23:16:17 1.3 --- UniversalIdentifier.hpp 2000/11/10 04:42:48 1.4 *************** *** 37,43 **** /*! ! \class UniversalIdentifier ! @version $Id$ */ class UniversalIdentifier : public Identifier { --- 37,44 ---- /*! ! \class UniversalIdentifier provides a universal unique identifier ! type */ + class UniversalIdentifier : public Identifier { *************** *** 76,88 **** // Operator overloads // - /// copy operator from a UniversalIdentifierCref UniversalIdentifierRef operator=( UniversalIdentifierCref ); ! /// copy operator from a CharPtr UniversalIdentifierRef operator=( CharPtr ) throw ( Assertion ); ! /// copy operator from a UniqueIdRef UniversalIdentifierRef operator=( UniqueIdRef ); ! /// copy operator from a UniqueIdPtr UniversalIdentifierRef operator=( UniqueIdPtr ) throw ( Assertion ); --- 77,96 ---- // Operator overloads // + + /// copy operator from a UniversalIdentifierCref UniversalIdentifierRef operator=( UniversalIdentifierCref ); ! ! /// copy operator from a CharPtr ! UniversalIdentifierRef operator=( CharPtr ) throw ( Assertion ); ! ! /// copy operator from a UniqueIdRef ! UniversalIdentifierRef operator=( UniqueIdRef ); ! ! /// copy operator from a UniqueIdPtr ! UniversalIdentifierRef operator=( UniqueIdPtr ) throw ( Assertion ); |