blob: fa6d1de206ae743d984aa5a6751b435b80ed46d3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | // file      : xsd-frontend/version.hxx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file
#ifndef XSD_FRONTEND_VERSION_HXX
#define XSD_FRONTEND_VERSION_HXX
#include <xercesc/util/XercesVersion.hpp>
#if _XERCES_VERSION < 30000
#  error Xerces-C++ 2-series is not supported
#endif
#endif  // XSD_FRONTEND_VERSION_HXX
 |