Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.
/ libxsd Public archive

[Unmaintained] XML Schema Datatypes (XSD) library for C++14.

License

Notifications You must be signed in to change notification settings

datagraph/libxsd

Repository files navigation

libxsd++: XSD library for C++14

libxsd++ is an XML Schema Datatypes (XSD) library for C++14.

Travis CI build status Coverity Scan build status

Features

Header File Class Name XSD Datatype
<xsd++/base64.h> xsd::base64 xsd:base64Binary
<xsd++/boolean.h> xsd::boolean xsd:boolean
<xsd++/date.h> xsd::date xsd:date
<xsd++/datetime.h> xsd::datetime xsd:dateTime
<xsd++/decimal.h> xsd::decimal xsd:decimal
<xsd++/double.h> xsd::double xsd:double
<xsd++/duration.h> xsd::duration xsd:duration [1]
<xsd++/float.h> xsd::float xsd:float
<xsd++/integer.h> xsd::integer xsd:integer [2]
<xsd++/string.h> xsd::string xsd:string
<xsd++/time.h> xsd::time xsd:time

Footnotes

[1]Includes also the derived xsd:dayTimeDuration and xsd:yearMonthDuration datatypes.
[2]Includes also the derived xsd:long, xsd:int, xsd:short, xsd:byte, xsd:unsignedLong, xsd:unsignedInt, xsd:unsignedShort, xsd:unsignedByte datatypes.

References

Build Prerequisites

Build Dependencies

Installation

Installing on Unix

Configuring, building, and installing the library (by default, into /usr/local) are all performed with the standard incantations:

$ ./autogen.sh                       # for a development checkout only
$ ./configure                        # on Linux
$ ./configure --with-stdlib=libc++   # on FreeBSD / Mac OS X
$ make
$ sudo make install

Configuration

Configuring a Static Build

By default on most platforms that support both, the library will be built both as a static library (libxsd++.a) as well as a dynamic shared library (libxsd++.so on most Unix systems, though libxsd++.dylib on Darwin).

If you don't require a shared library, configure the build accordingly:

$ ./configure --disable-shared

Configuring a Minimal Build

The library is thoroughly modular. Specific header files and their underlying function implementations can be omitted using the familiar ./configure --disable-FEATURE facility provided by Autoconf.

To review the list of features, see the output of ./configure --help.

Elsewhere

Find the project at: GitHub, Bitbucket, Travis CI, and Coverity Scan.

Author

License

This is free and unencumbered public domain software. For more information, see http://unlicense.org/ or the accompanying UNLICENSE file.

About

[Unmaintained] XML Schema Datatypes (XSD) library for C++14.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages