4a02f1cd80102ef9834be4d3106bb5b86337efa5
[shibboleth/cpp-opensaml.git] / saml / version.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * saml/version.h
19  * 
20  * Library version macros and constants 
21  */
22
23 #ifndef __saml_version_h__
24 #define __saml_version_h__
25
26 // This is all based on Xerces, on the theory it might be useful to
27 // support this kind of stuff in the future. If they ever yank some
28 // of this stuff, it can be copied into here.
29
30 #include <xercesc/util/XercesVersion.hpp>
31
32 // ---------------------------------------------------------------------------
33 // V E R S I O N   S P E C I F I C A T I O N
34
35 /**
36  * MODIFY THESE NUMERIC VALUES TO COINCIDE WITH OPENSAML VERSION
37  * AND DO NOT MODIFY ANYTHING ELSE IN THIS VERSION HEADER FILE
38  */
39
40 #define OPENSAML_VERSION_MAJOR 2
41 #define OPENSAML_VERSION_MINOR 0
42 #define OPENSAML_VERSION_REVISION 1
43
44 /** DO NOT MODIFY BELOW THIS LINE */
45
46 /**
47  * MAGIC THAT AUTOMATICALLY GENERATES THE FOLLOWING:
48  *
49  *      gOpenSAMLVersionStr, gOpenSAMLFullVersionStr, gOpenSAMLMajVersion, gOpenSAMLMinVersion, gOpenSAMLRevision
50  */
51
52 // ---------------------------------------------------------------------------
53 // V E R S I O N   I N F O R M A T I O N
54
55 // OpenSAML version strings; these particular macros cannot be used for
56 // conditional compilation as they are not numeric constants
57
58 #define OPENSAML_FULLVERSIONSTR INVK_CAT3_SEP_UNDERSCORE(OPENSAML_VERSION_MAJOR,OPENSAML_VERSION_MINOR,OPENSAML_VERSION_REVISION)
59 #define OPENSAML_FULLVERSIONDOT INVK_CAT3_SEP_PERIOD(OPENSAML_VERSION_MAJOR,OPENSAML_VERSION_MINOR,OPENSAML_VERSION_REVISION)
60 #define OPENSAML_FULLVERSIONNUM INVK_CAT3_SEP_NIL(OPENSAML_VERSION_MAJOR,OPENSAML_VERSION_MINOR,OPENSAML_VERSION_REVISION)
61 #define OPENSAML_VERSIONSTR     INVK_CAT2_SEP_UNDERSCORE(OPENSAML_VERSION_MAJOR,OPENSAML_VERSION_MINOR)
62
63 const char* const    gOpenSAMLVersionStr = OPENSAML_VERSIONSTR;
64 const char* const    gOpenSAMLFullVersionStr = OPENSAML_FULLVERSIONSTR;
65 const unsigned int   gOpenSAMLMajVersion = OPENSAML_VERSION_MAJOR;
66 const unsigned int   gOpenSAMLMinVersion = OPENSAML_VERSION_MINOR;
67 const unsigned int   gOpenSAMLRevision   = OPENSAML_VERSION_REVISION;
68
69 // OpenSAML version numeric constants that can be used for conditional
70 // compilation purposes.
71
72 #define _OPENSAML_VERSION CALC_EXPANDED_FORM (OPENSAML_VERSION_MAJOR,OPENSAML_VERSION_MINOR,OPENSAML_VERSION_REVISION)
73
74 #endif /* __saml_version_h__ */