Clean up file headers and NOTICE file.
[shibboleth/cpp-sp-resolver.git] / src / shibresolver / internal.h
1 /**
2  * See the NOTICE file distributed with this work for information
3  * regarding copyright ownership. Licensed under the Apache License,
4  * Version 2.0 (the "License"); you may not use this file except in
5  * compliance with the License. You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 /*
17  *  internal.h - internally visible classes
18  */
19
20 #ifndef __shibresolver_internal_h__
21 #define __shibresolver_internal_h__
22
23 #ifdef WIN32
24 # define _CRT_SECURE_NO_DEPRECATE 1
25 # define _CRT_NONSTDC_NO_DEPRECATE 1
26 #endif
27
28 // Export public APIs
29 #define SHIBRESOLVER_EXPORTS
30
31 // eventually we might be able to support autoconf via cygwin...
32 #if defined (_MSC_VER) || defined(__BORLANDC__)
33 # include "config_win32.h"
34 #else
35 # include "config.h"
36 #endif
37
38 #include "base.h"
39 #include "resolver.h"
40
41 #include <memory>
42 #include <xmltooling/logging.h>
43
44 using namespace xmltooling::logging;
45 using namespace xercesc;
46
47 #endif /* __shibresolver_internal_h__ */