neilg 2003/09/17 10:45:37 Modified: c/src/xercesc/framework/psvi PSVIItem.cpp XSAttributeDeclaration.cpp XSElementDeclaration.cpp XSIDCDefinition.cpp XSModelGroupDefinition.cpp XSNotationDeclaration.cpp XSObject.cpp XSTypeDefinition.cpp Log: remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. Revision Changes Path 1.2 +5 -2 xml-xerces/c/src/xercesc/framework/psvi/PSVIItem.cpp Index: PSVIItem.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/PSVIItem.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- PSVIItem.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ PSVIItem.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -78,7 +81,7 @@ { } -inline void PSVIItem::reset( +void PSVIItem::reset( const XMLCh* const validationContext , const XMLCh* const normalizedValue , const VALIDITY_STATE validityState 1.2 +7 -4 xml-xerces/c/src/xercesc/framework/psvi/XSAttributeDeclaration.cpp Index: XSAttributeDeclaration.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSAttributeDeclaration.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- XSAttributeDeclaration.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ XSAttributeDeclaration.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -71,19 +74,19 @@ } // XSObject methods -inline const XMLCh *XSAttributeDeclaration::getName() +const XMLCh *XSAttributeDeclaration::getName() { //REVISIT return 0; } -inline const XMLCh *XSAttributeDeclaration::getNamespace() +const XMLCh *XSAttributeDeclaration::getNamespace() { //REVISIT return 0; } -inline XSNamespaceItem *XSAttributeDeclaration::getNamespaceItem() +XSNamespaceItem *XSAttributeDeclaration::getNamespaceItem() { //REVISIT return 0; 1.2 +6 -3 xml-xerces/c/src/xercesc/framework/psvi/XSElementDeclaration.cpp Index: XSElementDeclaration.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSElementDeclaration.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- XSElementDeclaration.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ XSElementDeclaration.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -71,13 +74,13 @@ } // Overridden XSObject methods -inline const XMLCh *XSElementDeclaration::getName() +const XMLCh *XSElementDeclaration::getName() { // REVISIT return 0; } -inline const XMLCh *XSElementDeclaration::getNamespace() +const XMLCh *XSElementDeclaration::getNamespace() { // REVISIT return 0; 1.2 +6 -3 xml-xerces/c/src/xercesc/framework/psvi/XSIDCDefinition.cpp Index: XSIDCDefinition.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSIDCDefinition.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- XSIDCDefinition.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ XSIDCDefinition.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -71,13 +74,13 @@ } // Overridden XSObject methods -inline const XMLCh *XSIDCDefinition::getName() +const XMLCh *XSIDCDefinition::getName() { // REVISIT return 0; } -inline const XMLCh *XSIDCDefinition::getNamespace() +const XMLCh *XSIDCDefinition::getNamespace() { // REVISIT return 0; 1.2 +6 -3 xml-xerces/c/src/xercesc/framework/psvi/XSModelGroupDefinition.cpp Index: XSModelGroupDefinition.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSModelGroupDefinition.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- XSModelGroupDefinition.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ XSModelGroupDefinition.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -71,13 +74,13 @@ } // Overridden XSObject methods -inline const XMLCh *XSModelGroupDefinition::getName() +const XMLCh *XSModelGroupDefinition::getName() { // REVISIT return 0; } -inline const XMLCh *XSModelGroupDefinition::getNamespace() +const XMLCh *XSModelGroupDefinition::getNamespace() { // REVISIT return 0; 1.2 +6 -3 xml-xerces/c/src/xercesc/framework/psvi/XSNotationDeclaration.cpp Index: XSNotationDeclaration.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSNotationDeclaration.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- XSNotationDeclaration.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ XSNotationDeclaration.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -71,13 +74,13 @@ } // Overridden XSObject methods -inline const XMLCh *XSNotationDeclaration::getName() +const XMLCh *XSNotationDeclaration::getName() { // REVISIT return 0; } -inline const XMLCh *XSNotationDeclaration::getNamespace() +const XMLCh *XSNotationDeclaration::getNamespace() { // REVISIT return 0; 1.2 +7 -4 xml-xerces/c/src/xercesc/framework/psvi/XSObject.cpp Index: XSObject.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSObject.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- XSObject.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ XSObject.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -72,12 +75,12 @@ { } -inline const XMLCh *XSObject::getName() +const XMLCh *XSObject::getName() { return 0; } -inline const XMLCh *XSObject::getNamespace() +const XMLCh *XSObject::getNamespace() { return 0; } @@ -87,7 +90,7 @@ return fComponentType; } -inline XSNamespaceItem *XSObject::getNamespaceItem() +XSNamespaceItem *XSObject::getNamespaceItem() { return 0; } 1.2 +7 -4 xml-xerces/c/src/xercesc/framework/psvi/XSTypeDefinition.cpp Index: XSTypeDefinition.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSTypeDefinition.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- XSTypeDefinition.cpp 16 Sep 2003 14:33:36 -0000 1.1 +++ XSTypeDefinition.cpp 17 Sep 2003 17:45:37 -0000 1.2 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.2 2003/09/17 17:45:37 neilg + * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. + * * Revision 1.1 2003/09/16 14:33:36 neilg * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * @@ -73,19 +76,19 @@ } // overloaded XSObject methods -inline const XMLCh *XSTypeDefinition::getName() +const XMLCh *XSTypeDefinition::getName() { // REVISIT return 0; } -inline const XMLCh *XSTypeDefinition::getNamespace() +const XMLCh *XSTypeDefinition::getNamespace() { // REVISIT return 0; } -inline XSNamespaceItem *XSTypeDefinition::getNamespaceItem() +XSNamespaceItem *XSTypeDefinition::getNamespaceItem() { //REVISIT return 0;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]