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