Bump lib version.
[shibboleth/cpp-opensaml.git] / saml / base.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  * @file saml/base.h
19  * 
20  * Base header file definitions
21  * Must be included prior to including any other header
22  */
23
24 #ifndef __saml_base_h__
25 #define __saml_base_h__
26
27 #include <xmltooling/base.h>
28
29 // Windows and GCC4 Symbol Visibility Macros
30 #ifdef WIN32
31   #define SAML_IMPORT __declspec(dllimport)
32   #define SAML_EXPORT __declspec(dllexport)
33   #define SAML_DLLLOCAL
34   #define SAML_DLLPUBLIC
35 #else
36   #define SAML_IMPORT
37   #ifdef GCC_HASCLASSVISIBILITY
38     #define SAML_EXPORT __attribute__ ((visibility("default")))
39     #define SAML_DLLLOCAL __attribute__ ((visibility("hidden")))
40     #define SAML_DLLPUBLIC __attribute__ ((visibility("default")))
41   #else
42     #define SAML_EXPORT
43     #define SAML_DLLLOCAL
44     #define SAML_DLLPUBLIC
45   #endif
46 #endif
47
48 // Define SAML_API for DLL builds
49 #ifdef SAML_EXPORTS
50   #define SAML_API SAML_EXPORT
51 #else
52   #define SAML_API SAML_IMPORT
53 #endif
54
55 // Throwable classes must always be visible on GCC in all binaries
56 #ifdef WIN32
57   #define SAML_EXCEPTIONAPI(api) api
58 #elif defined(GCC_HASCLASSVISIBILITY)
59   #define SAML_EXCEPTIONAPI(api) SAML_EXPORT
60 #else
61   #define SAML_EXCEPTIONAPI(api)
62 #endif
63
64 #endif /* __saml_base_h__ */