knoaman 2003/11/25 10:15:00
Modified: c/src/xercesc/validators/schema SchemaAttDef.cpp
Log:
Serialize enclosing complex type. Thanks to David Cargill.
Revision Changes Path
1.10 +8 -0 xml-xerces/c/src/xercesc/validators/schema/SchemaAttDef.cpp
Index: SchemaAttDef.cpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/schema/SchemaAttDef.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- SchemaAttDef.cpp 21 Nov 2003 22:34:46 -0000 1.9
+++ SchemaAttDef.cpp 25 Nov 2003 18:15:00 -0000 1.10
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.10 2003/11/25 18:15:00 knoaman
+ * Serialize enclosing complex type. Thanks to David Cargill.
+ *
* Revision 1.9 2003/11/21 22:34:46 neilg
* More schema component model implementation, thanks to David Cargill.
* In particular, this cleans up and completes the XSModel, XSNamespaceItem,
@@ -244,6 +247,7 @@
serEng<<(int)fValidity;
serEng<<(int)fValidation;
+ serEng<<fEnclosingCT;
}
else
{
@@ -265,6 +269,8 @@
serEng>>i;
fValidation = (PSVIDefs::Validation)i;
+
+ serEng>>fEnclosingCT;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]