|
From: Frank V. C. <fr...@us...> - 2000-11-20 05:22:36
|
Update of /cvsroot/corelinux/clfw/clfw/LibLoad In directory slayer.i.sourceforge.net:/tmp/cvs-serv13547/clfw/LibLoad Modified Files: LibraryInstance.hpp Log Message: 122753 Library Load Refits Index: LibraryInstance.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/LibLoad/LibraryInstance.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** LibraryInstance.hpp 2000/11/19 05:19:52 1.3 --- LibraryInstance.hpp 2000/11/20 05:22:33 1.4 *************** *** 123,126 **** --- 123,148 ---- protected: + // + // Constructors + // + + /// Never used, exception thrown + + LibraryInstance( void ) throw ( Assertion ); + + /// Copy constructor, never used + + LibraryInstance( LibraryInstanceCref ) + throw ( Assertion ); + + + /// Assignment operator never used + + LibraryInstanceRef operator=( LibraryInstanceCref ) + throw ( Assertion ); + + // + // Support methods + // /** Instance method for derivations to call to actually *************** *** 147,164 **** private: - /// Never used, exception thrown - - LibraryInstance( void ) throw ( Assertion ); - - /// Copy constructor, never used - - LibraryInstance( LibraryInstanceCref ) - throw ( Assertion ); - - - /// Assignment operator never used - - LibraryInstanceRef operator=( LibraryInstanceCref ) - throw ( Assertion ); private: --- 169,172 ---- |