Bump version, add plugins ext library, draft of GSS-API attribute support.
[shibboleth/sp.git] / plugins / internal.h
1 /*
2  *  Copyright 2011 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  *  internal.h - internally visible declarations
19  */
20
21 #ifndef __plugins_internal_h__
22 #define __plugins_internal_h__
23
24 #ifdef WIN32
25 # define _CRT_SECURE_NO_DEPRECATE 1
26 # define _CRT_NONSTDC_NO_DEPRECATE 1
27 #endif
28
29 // eventually we might be able to support autoconf via cygwin...
30 #if defined (_MSC_VER) || defined(__BORLANDC__)
31 # include "config_win32.h"
32 #else
33 # include "config.h"
34 #endif
35
36 #include <shibsp/base.h>
37
38 #include <memory>
39 #include <xmltooling/logging.h>
40
41 using namespace xmltooling::logging;
42 using namespace xercesc;
43
44 #endif /* __plugins_internal_h__ */