root/win32/xsd-3.1.0-i686/libxsd/xsd/cxx/version.hxx @ 111

Revision 111, 0.8 kB (checked in by mido, 16 years ago)

pridana knihovna XSD (a jeji chlebodarkyne XERCES), v ramci Win32 zprovoznen priklad tests/test_xsd_hello.cxx

RevLine 
[111]1// file      : xsd/cxx/version.hxx
2// author    : Boris Kolpackov <boris@codesynthesis.com>
3// copyright : Copyright (c) 2005-2008 Code Synthesis Tools CC
4// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file
5
6#ifndef XSD_CXX_VERSION_HXX
7#define XSD_CXX_VERSION_HXX
8
9// Version format is AABBCCDD where
10//
11// AA - major version number
12// BB - minor version number
13// CC - bugfix version number
14// DD - alpha / beta (DD + 50) version number
15//
16// When DD is not 00, 1 is subtracted from AABBCC. For example:
17//
18// Version     AABBCCDD
19// 2.0.0       02000000
20// 2.1.0       02010000
21// 2.1.1       02010100
22// 2.2.0.a1    02019901
23// 3.0.0.b2    02999952
24//
25
26#define XSD_STR_VERSION "3.1.0"
27#define XSD_INT_VERSION 3010000L
28
29#endif  // XSD_CXX_VERSION_HXX
Note: See TracBrowser for help on using the browser.