aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx
AgeCommit message (Collapse)AuthorFilesLines
2023-03-20Tighten error code accessors to check error typeBoris Kolpackov2-19/+23
2023-03-20Add extra validation for date, dateTime, and gMonthDay per XML Schema 1.1Boris Kolpackov6-14/+156
2022-08-19Bump version to 3.3.0.a13Boris Kolpackov1-2/+2
2020-11-03Add missing copy constructorBoris Kolpackov1-0/+5
We have a copy assigned operator and without the corresponding copy constructor we get a -Wdeprecated-copy warning with newer GCC versions. Instead of adding the copy constructor we could have also dropped the copy assignment since it is identical to what would be implied. It's not, however, clear why it was added in the first place (it was added before we started tracking development with git). Chances are, some old and broken compiler is confused by the other assignment operator. So to be on the safe side we rather add the copy constructor.
2020-02-25Bump version to 3.3.0.a12Boris Kolpackov1-2/+2
2020-02-25Bump version to 3.3.0.a11Boris Kolpackov1-2/+2
2020-02-14Drop copyright notice from source codeKaren Arutyunov754-754/+0
2017-02-20Allow empty base64Binary value space per specBoris Kolpackov2-113/+119
2017-01-03Update copyright yearBoris Kolpackov754-754/+754
2016-01-17Bump version to 3.3.0.a10Boris Kolpackov1-2/+2
2016-01-11Bump version to 3.3.0.a9Boris Kolpackov1-2/+2
2015-12-10Bump version to 3.3.0.a8Boris Kolpackov1-2/+2
2015-11-30Return NULL pointer instead of falseBoris Kolpackov1-1/+1
2014-12-17Bump version to 3.3.0.a7Boris Kolpackov1-2/+2
2014-04-29Bump version to 3.3.0.a6Boris Kolpackov1-2/+2
2014-04-20Bump version to 3.3.0.a5Boris Kolpackov1-2/+2
2014-04-20Add support for fractionDigits in serializerBoris Kolpackov3-4/+20
2014-03-21Update copyrightBoris Kolpackov754-754/+754
2014-03-19Remove author from source filesBoris Kolpackov754-754/+0
2014-02-26Bump version to 3.3.0.a4Boris Kolpackov1-2/+2
2013-05-30Bump version to 3.3.0.a2Boris Kolpackov1-2/+2
2011-10-28Bump version to 3.3.0.a2Boris Kolpackov1-2/+2
2011-09-15Bump version to 3.3.0.a1Boris Kolpackov1-2/+2
2011-06-28Add format()/precision() modifiers to floating-point serializersBoris Kolpackov12-0/+58
2011-02-21Fix bug in decimal data types parsingBoris Kolpackov2-8/+6
2011-02-14Fix warningBoris Kolpackov1-1/+1
2011-02-13Bump version to 3.2.0Boris Kolpackov1-2/+2
2011-02-11Fix recursive polymorphic parsing in C++/ParserBoris Kolpackov2-4/+40
New test: cxx/parser/polyrecur.
2011-02-10Move inline c-tors after non-inline functions to help VxWorks 5.xBoris Kolpackov27-85/+81
2011-01-12Bump version to 3.2.0.b3Boris Kolpackov1-2/+2
2011-01-12Work around corner case problem with aborting finished parserBoris Kolpackov1-0/+15
2011-01-04Copyright updateBoris Kolpackov754-754/+754
2010-12-15Initialize the callback function in serializer mapBoris Kolpackov1-1/+1
2010-11-25Bump version to 3.2.0.b2Boris Kolpackov1-2/+2
2010-10-19Cast the xml error type to make sure proper c-tor is calledBoris Kolpackov1-1/+1
2010-10-19Initialize variables to get rid of warningsBoris Kolpackov3-3/+3
2010-10-18Misc fixesBoris Kolpackov1-3/+3
2010-10-18Cosmetic changesBoris Kolpackov5-11/+11
2010-10-18Bump version to 3.2.0.b1Boris Kolpackov1-2/+2
2010-10-18Support for schema evolution using substitution groupsBoris Kolpackov18-112/+308
New examples: hybrid/evolution/ignore and hybrid/evolution/passthrough.
2010-10-15Allow initialization with NULL C-stringBoris Kolpackov1-3/+3
2010-10-15Add current element to the parser contextBoris Kolpackov3-14/+81
2010-10-15Disable copy constructor and copy assignmentBoris Kolpackov1-0/+4
2010-10-15Add ro_string::assign(ro_string)Boris Kolpackov2-1/+11
2010-10-14New mapping for anyType with support for polymorphismBoris Kolpackov12-6/+742
2010-10-13Map anySimpleType to a stringBoris Kolpackov43-200/+805
2010-10-12Finish {min,max}{Exclusive,Inclusive} facets supportBoris Kolpackov32-78/+2129
New test: hybrid/facets.
2010-10-11Support for validation of the pattern facetBoris Kolpackov8-1/+197
New test: hybrid/pattern.
2010-10-08Add support for the whiteSpace facetBoris Kolpackov49-431/+756
Use the same mechanism to handle whitespace processing for build-in types and enumerations.
2010-10-07Implement generation of clone functionsBoris Kolpackov18-17/+774
New test: clone.