SimpleITK  1.0.1
sitkBasicFilters.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright Insight Software Consortium
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
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 #ifndef sitkBasicFilters_h
19 #define sitkBasicFilters_h
20 
21 #include "sitkMacro.h"
22 
23 #include "sitkInterpolator.h"
24 #include "sitkRandomSeed.h"
25 
26 // todo this should be moved to a more local place
27 #include "sitkTransform.h"
28 
29 #if defined( SITKDLL )
30  #ifdef SimpleITKBasicFilters0_EXPORTS
31  #define SITKBasicFilters0_EXPORT SITK_ABI_EXPORT
32  #else
33  #define SITKBasicFilters0_EXPORT SITK_ABI_IMPORT
34  #endif /* SimpleITKBasicFilters0_EXPORTS */
35 #else
36  // Don't hide symbols in the static SimpleITKBasicFilters library in case
37  // -fvisibility=hidden is used
38  #define SITKBasicFilters0_EXPORT
39 #endif
40 
41 #if defined( SITKDLL )
42  #ifdef SimpleITKBasicFilters_EXPORTS
43  #define SITKBasicFilters_EXPORT SITK_ABI_EXPORT
44  #else
45  #define SITKBasicFilters_EXPORT SITK_ABI_IMPORT
46  #endif /* SimpleITKBasicFilters_EXPORTS */
47 #else
48  // Don't hide symbols in the static SimpleITKBasicFilters library in case
49  // -fvisibility=hidden is used
50  #define SITKBasicFilters_EXPORT
51 #endif
52 
53 #define SITKBasicFilters0_HIDDEN SITK_ABI_HIDDEN
54 #define SITKBasicFilters_HIDDEN SITK_ABI_HIDDEN
55 
56 #endif // sitkBasicFilters_h