IMP logo
IMP Reference Guide  2.10.1
The Integrative Modeling Platform
integrative_docking_config.h
1 // Autogenerated by ../../../../tmp/nightly-build-8954/imp-2.10.1/tools/build/setup_module.py
2 // from ../../../../tmp/nightly-build-8954/imp-2.10.1/tools/build/config_templates/header.h
3 // Do not edit - any changes will be lost!
4 
5 /*
6  * \file IMP/integrative_docking/integrative_docking_config.h
7  * \brief Provide macros to mark functions and classes as exported
8  * from a DLL/.so, and to set up namespaces
9  *
10  * When building the module, IMPINTEGRATIVEDOCKING_EXPORTS should be defined, and when
11  * using the module externally, it should not be. Classes and functions
12  * declared in the module's headers should then be marked with
13  * IMPINTEGRATIVEDOCKINGEXPORT if they are intended to be part of the API and
14  * they are not defined entirely in a header.
15  *
16  * The Windows build environment requires applications to mark exports in
17  * this way; we use the same markings to set the visibility of ELF symbols
18  * if we have compiler support.
19  *
20  * All code in this module should live in the IMP::integrative_docking namespace.
21  * This is simply achieved by wrapping things with the
22  * IMPINTEGRATIVEDOCKING_BEGIN_NAMESPACE and IMPINTEGRATIVEDOCKING_END_NAMESPACE macros.
23  * There are similar macros for module code that is designed to be for
24  * internal use only.
25  *
26  * Copyright 2007-2018 IMP Inventors. All rights reserved.
27  *
28  */
29 
30 #ifndef IMPINTEGRATIVEDOCKING_CONFIG_H
31 #define IMPINTEGRATIVEDOCKING_CONFIG_H
32 
33 #include <IMP/kernel_config.h>
34 #include <string>
35 
36 #ifdef _MSC_VER
37 #define NOMINMAX
38 
39 #ifdef IMPINTEGRATIVEDOCKING_EXPORTS
40 #define IMPINTEGRATIVEDOCKINGEXPORT __declspec(dllexport)
41 #else // EXPORTS
42 #define IMPINTEGRATIVEDOCKINGEXPORT __declspec(dllimport)
43 #endif // EXPORTS
44 
45 #else // _MSC_VER
46 
47 #ifdef GCC_VISIBILITY
48 #define IMPINTEGRATIVEDOCKINGEXPORT __attribute__((visibility("default")))
49 #else // GCC_VISIBILITY
50 #define IMPINTEGRATIVEDOCKINGEXPORT
51 #endif // GCC_VISIBILITY
52 
53 #endif // _MSC_VER
54 
55 #if defined(_MSC_VER) && !defined(SWIG)
56 #ifdef IMPINTEGRATIVEDOCKING_EXPORTS
57 
58 #define IMPINTEGRATIVEDOCKING_EXPORT_TEMPLATE(name) \
59  template class __declspec(dllexport) name
60 
61 #else //EXPORTS
62 
63 #define IMPINTEGRATIVEDOCKING_EXPORT_TEMPLATE(name) \
64  template class __declspec(dllimport) name
65 
66 #endif // EXPORTS
67 
68 #else // MSC and SWIG
69 #define IMPINTEGRATIVEDOCKING_EXPORT_TEMPLATE(name) IMP_REQUIRE_SEMICOLON_NAMESPACE
70 
71 #endif // MSC and SWIG
72 
73 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
74 
75 #define IMPINTEGRATIVEDOCKING_BEGIN_NAMESPACE \
76  IMP_COMPILER_ENABLE_WARNINGS namespace IMP{ namespace integrative_docking {
77 
78 #define IMPINTEGRATIVEDOCKING_END_NAMESPACE } } \
79 IMP_COMPILER_DISABLE_WARNINGS
80 
81 #define IMPINTEGRATIVEDOCKING_BEGIN_INTERNAL_NAMESPACE IMPINTEGRATIVEDOCKING_BEGIN_NAMESPACE \
82  namespace internal {
83 
84 #define IMPINTEGRATIVEDOCKING_END_INTERNAL_NAMESPACE } IMPINTEGRATIVEDOCKING_END_NAMESPACE
85 
86 #else // SWIG and DOXYGEN
87 #define IMPINTEGRATIVEDOCKING_BEGIN_NAMESPACE namespace IMP{ namespace integrative_docking {
88 
89 #define IMPINTEGRATIVEDOCKING_END_NAMESPACE } }
90 
91 #define IMPINTEGRATIVEDOCKING_BEGIN_INTERNAL_NAMESPACE IMPINTEGRATIVEDOCKING_BEGIN_NAMESPACE\
92  namespace internal {
93 
94 #define IMPINTEGRATIVEDOCKING_END_INTERNAL_NAMESPACE } IMPINTEGRATIVEDOCKING_END_NAMESPACE
95 
96 #endif // SWIG AND DOXYGEN
97 
98 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_ALGEBRA
99 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_ALGEBRA 1
100 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_ATOM
101 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_ATOM 1
102 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_CGAL
103 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_CGAL 1
104 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_CONTAINER
105 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_CONTAINER 1
106 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_CORE
107 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_CORE 1
108 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_DISPLAY
109 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_DISPLAY 1
110 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_DOMINO
111 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_DOMINO 1
112 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_GSL
113 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_GSL 1
114 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_KERNEL
115 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_KERNEL 1
116 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_RMF
117 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_RMF 1
118 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_SCORE_FUNCTOR
119 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_SCORE_FUNCTOR 1
120 #define IMP_INTEGRATIVE_DOCKING_USE_IMP_STATISTICS
121 #define IMP_INTEGRATIVE_DOCKING_HAS_IMP_STATISTICS 1
122 #define IMP_INTEGRATIVE_DOCKING_USE_BOOST_FILESYSTEM
123 #define IMP_INTEGRATIVE_DOCKING_HAS_BOOST_FILESYSTEM 1
124 #define IMP_INTEGRATIVE_DOCKING_USE_BOOST_GRAPH
125 #define IMP_INTEGRATIVE_DOCKING_HAS_BOOST_GRAPH 1
126 #define IMP_INTEGRATIVE_DOCKING_USE_BOOST_RANDOM
127 #define IMP_INTEGRATIVE_DOCKING_HAS_BOOST_RANDOM 1
128 #define IMP_INTEGRATIVE_DOCKING_USE_BOOST_REGEX
129 #define IMP_INTEGRATIVE_DOCKING_HAS_BOOST_REGEX 1
130 #define IMP_INTEGRATIVE_DOCKING_USE_BOOST_SYSTEM
131 #define IMP_INTEGRATIVE_DOCKING_HAS_BOOST_SYSTEM 1
132 #define IMP_INTEGRATIVE_DOCKING_USE_CGAL
133 #define IMP_INTEGRATIVE_DOCKING_HAS_CGAL 1
134 #define IMP_INTEGRATIVE_DOCKING_USE_FFTW3
135 #define IMP_INTEGRATIVE_DOCKING_HAS_FFTW3 1
136 #define IMP_INTEGRATIVE_DOCKING_USE_GSL
137 #define IMP_INTEGRATIVE_DOCKING_HAS_GSL 1
138 #define IMP_INTEGRATIVE_DOCKING_USE_HDF5
139 #define IMP_INTEGRATIVE_DOCKING_HAS_HDF5 1
140 #define IMP_INTEGRATIVE_DOCKING_USE_OPENCV22
141 #define IMP_INTEGRATIVE_DOCKING_HAS_OPENCV22 1
142 #define IMP_INTEGRATIVE_DOCKING_USE_RMF
143 #define IMP_INTEGRATIVE_DOCKING_HAS_RMF 1
144 #define IMP_INTEGRATIVE_DOCKING_USE_PYTHON_IHM
145 #define IMP_INTEGRATIVE_DOCKING_HAS_PYTHON_IHM 1
146 
147 // functions are defined explicitly for SWIG
148 namespace IMP{ namespace integrative_docking {
149 /** \name Standard module functions
150  All \imp modules have a set of standard functions to help get information
151  about the module and about files associated with the module.
152  @{
153  */
154 #if !defined(SWIG)
155  IMPINTEGRATIVEDOCKINGEXPORT std::string get_module_version();
156 #endif
157 
158 #if !defined(SWIG)
159  // SWIG will whine about duplicate definitions of function
160  inline std::string get_module_name() { return "IMP::integrative_docking"; }
161 #endif
162 
163  //! Return the full path to one of this module's data files
164  /** To read the data file "data_library" that was placed in the \c data
165  directory of this module, do something like
166  \code
167  std::ifstream in(IMP::integrative_docking::get_data_path("data_library"));
168  \endcode
169  This will ensure that the code works both when IMP is installed or
170  if used via the \c setup_environment.sh script.
171 
172  \note Each module has its own data directory, so be sure to use
173  this function from the correct module.
174  */
175 #if !defined(SWIG)
176  IMPINTEGRATIVEDOCKINGEXPORT std::string get_data_path(std::string file_name);
177 #endif
178 
179  //! Return the full path to one of this module's example files
180  /** To read the example file "example_protein.pdb" that was placed
181  in the \c examples directory of this module, do something like
182  \code
183  std::ifstream in(IMP::integrative_docking::get_example_path("example_protein.pdb"));
184  \endcode
185  This will ensure that the code works both when IMP is installed or
186  if used via the \c setup_environment.sh script.
187 
188  \note Each module has its own example directory, so be sure to use
189  this function from the correct module.
190  */
191 #if !defined(SWIG)
192  IMPINTEGRATIVEDOCKINGEXPORT std::string get_example_path(std::string file_name);
193 #endif
194  /** @} */
195 
196 
197 } } //namespace
198 
199 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
200 
201 #include <IMP/Showable.h>
202 #include <IMP/hash.h>
203 
204 namespace IMP{ namespace integrative_docking {
205 using ::IMP::Showable;
206 using ::IMP::operator<<;
207 using ::IMP::hash_value;
208 } } // namespace
209 namespace IMP{ namespace integrative_docking { namespace internal {
210 using ::IMP::Showable;
211 using ::IMP::operator<<;
212 using ::IMP::hash_value;
213 } } } // namespace
214 
215 #endif // !defined(SWIG) && !defined(IMP_DOXYGEN)
216 
217 
218 #include <IMP/compiler_macros.h>
219 
220 #endif /* IMPINTEGRATIVEDOCKING_CONFIG_H */
221 
222 // Here so it is always parsed
223 
224 #ifdef IMPINTEGRATIVEDOCKING_DEPRECATED_HEADER
225 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_HEADER
226 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_VALUE_DEF
227 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_VALUE_DECL
228 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_OBJECT_DEF
229 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_OBJECT_DECL
230 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_FUNCTION_DEF
231 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_FUNCTION_DECL
232 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_METHOD_DEF
233 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_METHOD_DECL
234 #undef IMPINTEGRATIVEDOCKING_DEPRECATED_MACRO
235 #undef IMPINTEGRATIVEDOCKING_SHOW_WARNINGS
236 #endif
237 
238 // the central modules we can update easily, so don't warn in them
239 #if defined( IMPINTEGRATIVEDOCKING_COMPILATION) \
240  || defined(SWIG) || defined(IMP_SWIG_WRAPPER) \
241  || defined( IMPINTEGRATIVEDOCKING_ALL) || defined(IMP_DOXYGEN) \
242  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
243  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
244  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
245  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
246  || defined(IMPSCOREFUNCTOR_COMPILATION) || defined(IMPRMF_COMPILATION) \
247  || defined(IMPGSL_COMPILATION)
248 #define IMPINTEGRATIVEDOCKING_SHOW_WARNINGS 0
249 #else
250 #define IMPINTEGRATIVEDOCKING_SHOW_WARNINGS 1
251 #endif
252 
253 // suppress header warnings with all header, SWIG wrapper and in the module
254 #if IMPINTEGRATIVEDOCKING_SHOW_WARNINGS
255 #define IMPINTEGRATIVEDOCKING_DEPRECATED_HEADER(version, help_message) \
256  IMP_PRAGMA(message(__FILE__ " is deprecated: " help_message))
257 #define IMPINTEGRATIVEDOCKING_DEPRECATED_VALUE_DECL(version) \
258  IMP_DEPRECATED_ATTRIBUTE
259 #define IMPINTEGRATIVEDOCKING_DEPRECATED_OBJECT_DECL(version) \
260  IMP_DEPRECATED_ATTRIBUTE
261 #define IMPINTEGRATIVEDOCKING_DEPRECATED_FUNCTION_DECL(version) \
262  IMP_DEPRECATED_ATTRIBUTE
263 #define IMPINTEGRATIVEDOCKING_DEPRECATED_METHOD_DECL(version) \
264  IMP_DEPRECATED_ATTRIBUTE
265 
266 #else //IMPINTEGRATIVEDOCKING_SHOW_WARNINGS
267 /** See [deprecation support](@ref deprecation). */
268 #define IMPINTEGRATIVEDOCKING_DEPRECATED_HEADER(version, help_message) \
269 /** See [deprecation support](@ref deprecation). */
270 #define IMPINTEGRATIVEDOCKING_DEPRECATED_VALUE_DECL(version)
271 /** See [deprecation support](@ref deprecation). */
272 #define IMPINTEGRATIVEDOCKING_DEPRECATED_OBJECT_DECL(version)
273 /** See [deprecation support](@ref deprecation). */
274 #define IMPINTEGRATIVEDOCKING_DEPRECATED_FUNCTION_DECL(version)
275 /** See [deprecation support](@ref deprecation). */
276 #define IMPINTEGRATIVEDOCKING_DEPRECATED_METHOD_DECL(version)
277 
278 #endif // IMPINTEGRATIVEDOCKING_SHOW_WARNINGS
279 
280 // only warn about it in the all inclusion to cut down on copies
281 #if !defined(IMP_ALL) || defined(SWIG) || defined(IMP_DOXYGEN) \
282  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
283  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
284  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
285  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
286  || defined(IMPSCOREFUNCTOR_COMPILATION)
287 /** See [deprecation support](@ref deprecation). */
288 #define IMPINTEGRATIVEDOCKING_DEPRECATED_MACRO(version, message)
289 
290 #else
291 #define IMPINTEGRATIVEDOCKING_DEPRECATED_MACRO(version, message) \
292  IMP_DEPRECATED_MACRO(version, message)
293 #endif
294 
295 /** See [deprecation support](@ref deprecation). */
296 #define IMPINTEGRATIVEDOCKING_DEPRECATED_VALUE_DEF(version, message) \
297  IMP_DEPRECATED_VALUE_RUNTIME_WARNING(version, message)
298 
299 /** See [deprecation support](@ref deprecation). */
300 #define IMPINTEGRATIVEDOCKING_DEPRECATED_OBJECT_DEF(version, message) \
301  IMP_DEPRECATED_OBJECT_RUNTIME_WARNING(version, message)
302 
303 /** See [deprecation support](@ref deprecation). */
304 #define IMPINTEGRATIVEDOCKING_DEPRECATED_FUNCTION_DEF(version, message) \
305  IMP_DEPRECATED_FUNCTION_RUNTIME_WARNING(version, message)
306 
307 /** See [deprecation support](@ref deprecation). */
308 #define IMPINTEGRATIVEDOCKING_DEPRECATED_METHOD_DEF(version, message) \
309  IMP_DEPRECATED_METHOD_RUNTIME_WARNING(version, message)
310 
311 
312 #include <IMP/compiler_macros.h>
313 
314 #if defined(IMP_EXECUTABLE) && !defined(IMP_EXECUTABLE_WARNINGS)
315 IMP_COMPILER_ENABLE_WARNINGS
316 #define IMP_EXECUTABLE_WARNINGS
317 #endif
std::string get_data_path(std::string file_name)
Return the full path to one of this module's data files.
IO support.
IO support.
Various compiler workarounds.
std::string get_example_path(std::string file_name)
Return the full path to one of this module's example files.