IMP logo
IMP Reference Guide  develop.234970c887,2024/04/29
The Integrative Modeling Platform
cnmultifit_config.h
1 // Autogenerated by ../../../../tmp/nightly-build-99767/imp-20240429.develop.234970c887/tools/build/setup_module.py
2 // from ../../../../tmp/nightly-build-99767/imp-20240429.develop.234970c887/tools/build/config_templates/header.h
3 // Do not edit - any changes will be lost!
4 
5 /*
6  * \file IMP/cnmultifit/cnmultifit_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, IMPCNMULTIFIT_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  * IMPCNMULTIFITEXPORT 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::cnmultifit namespace.
21  * This is simply achieved by wrapping things with the
22  * IMPCNMULTIFIT_BEGIN_NAMESPACE and IMPCNMULTIFIT_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-2022 IMP Inventors. All rights reserved.
27  *
28  */
29 
30 #ifndef IMPCNMULTIFIT_CONFIG_H
31 #define IMPCNMULTIFIT_CONFIG_H
32 
33 #include <IMP/kernel_config.h>
34 #include <string>
35 
36 #ifdef _MSC_VER
37 #define NOMINMAX
38 
39 #ifdef IMPCNMULTIFIT_EXPORTS
40 #define IMPCNMULTIFITEXPORT __declspec(dllexport)
41 #else // EXPORTS
42 #define IMPCNMULTIFITEXPORT __declspec(dllimport)
43 #endif // EXPORTS
44 
45 #else // _MSC_VER
46 
47 #ifdef GCC_VISIBILITY
48 #define IMPCNMULTIFITEXPORT __attribute__((visibility("default")))
49 #else // GCC_VISIBILITY
50 #define IMPCNMULTIFITEXPORT
51 #endif // GCC_VISIBILITY
52 
53 #endif // _MSC_VER
54 
55 #if defined(_MSC_VER) && !defined(SWIG)
56 #ifdef IMPCNMULTIFIT_EXPORTS
57 
58 #define IMPCNMULTIFIT_EXPORT_TEMPLATE(name) \
59  template class __declspec(dllexport) name
60 
61 #else //EXPORTS
62 
63 #define IMPCNMULTIFIT_EXPORT_TEMPLATE(name) \
64  template class __declspec(dllimport) name
65 
66 #endif // EXPORTS
67 
68 #else // MSC and SWIG
69 #define IMPCNMULTIFIT_EXPORT_TEMPLATE(name) IMP_REQUIRE_SEMICOLON_NAMESPACE
70 
71 #endif // MSC and SWIG
72 
73 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
74 
75 #define IMPCNMULTIFIT_BEGIN_NAMESPACE \
76  IMP_COMPILER_ENABLE_WARNINGS namespace IMP{ namespace cnmultifit {
77 
78 #define IMPCNMULTIFIT_END_NAMESPACE } } \
79 IMP_COMPILER_DISABLE_WARNINGS
80 
81 #define IMPCNMULTIFIT_BEGIN_INTERNAL_NAMESPACE IMPCNMULTIFIT_BEGIN_NAMESPACE \
82  namespace internal {
83 
84 #define IMPCNMULTIFIT_END_INTERNAL_NAMESPACE } IMPCNMULTIFIT_END_NAMESPACE
85 
86 #else // SWIG and DOXYGEN
87 #define IMPCNMULTIFIT_BEGIN_NAMESPACE namespace IMP{ namespace cnmultifit {
88 
89 #define IMPCNMULTIFIT_END_NAMESPACE } }
90 
91 #define IMPCNMULTIFIT_BEGIN_INTERNAL_NAMESPACE IMPCNMULTIFIT_BEGIN_NAMESPACE\
92  namespace internal {
93 
94 #define IMPCNMULTIFIT_END_INTERNAL_NAMESPACE } IMPCNMULTIFIT_END_NAMESPACE
95 
96 #endif // SWIG AND DOXYGEN
97 
98 #define IMP_CNMULTIFIT_USE_IMP_CGAL
99 #define IMP_CNMULTIFIT_HAS_IMP_CGAL 1
100 #define IMP_CNMULTIFIT_USE_IMP_CONTAINER
101 #define IMP_CNMULTIFIT_HAS_IMP_CONTAINER 1
102 #define IMP_CNMULTIFIT_USE_IMP_DISPLAY
103 #define IMP_CNMULTIFIT_HAS_IMP_DISPLAY 1
104 #define IMP_CNMULTIFIT_USE_IMP_DOMINO
105 #define IMP_CNMULTIFIT_HAS_IMP_DOMINO 1
106 #define IMP_CNMULTIFIT_USE_IMP_ISD
107 #define IMP_CNMULTIFIT_HAS_IMP_ISD 1
108 #define IMP_CNMULTIFIT_USE_IMP_KERNEL
109 #define IMP_CNMULTIFIT_HAS_IMP_KERNEL 1
110 #define IMP_CNMULTIFIT_USE_IMP_RMF
111 #define IMP_CNMULTIFIT_HAS_IMP_RMF 1
112 #define IMP_CNMULTIFIT_USE_IMP_SAXS
113 #define IMP_CNMULTIFIT_HAS_IMP_SAXS 1
114 #define IMP_CNMULTIFIT_USE_IMP_SCORE_FUNCTOR
115 #define IMP_CNMULTIFIT_HAS_IMP_SCORE_FUNCTOR 1
116 #define IMP_CNMULTIFIT_USE_BOOST_GRAPH
117 #define IMP_CNMULTIFIT_HAS_BOOST_GRAPH 1
118 #define IMP_CNMULTIFIT_USE_BOOST_RANDOM
119 #define IMP_CNMULTIFIT_HAS_BOOST_RANDOM 1
120 #define IMP_CNMULTIFIT_USE_BOOST_REGEX
121 #define IMP_CNMULTIFIT_HAS_BOOST_REGEX 1
122 #define IMP_CNMULTIFIT_USE_BOOST_SYSTEM
123 #define IMP_CNMULTIFIT_HAS_BOOST_SYSTEM 1
124 #define IMP_CNMULTIFIT_USE_CGAL
125 #define IMP_CNMULTIFIT_HAS_CGAL 1
126 #define IMP_CNMULTIFIT_USE_FFTW3
127 #define IMP_CNMULTIFIT_HAS_FFTW3 1
128 #define IMP_CNMULTIFIT_USE_HDF5
129 #define IMP_CNMULTIFIT_HAS_HDF5 1
130 #define IMP_CNMULTIFIT_USE_NUMPY
131 #define IMP_CNMULTIFIT_HAS_NUMPY 1
132 #define IMP_CNMULTIFIT_USE_RMF
133 #define IMP_CNMULTIFIT_HAS_RMF 1
134 #define IMP_CNMULTIFIT_USE_PYTHON_IHM
135 #define IMP_CNMULTIFIT_HAS_PYTHON_IHM 1
136 
137 // functions are defined explicitly for SWIG
138 namespace IMP{ namespace cnmultifit {
139 /** \name Standard module functions
140  All \imp modules have a set of standard functions to help get information
141  about the module and about files associated with the module.
142  @{
143  */
144 #if !defined(SWIG)
145  IMPCNMULTIFITEXPORT std::string get_module_version();
146 #endif
147 
148 #if !defined(SWIG)
149  // SWIG will whine about duplicate definitions of function
150  inline std::string get_module_name() { return "IMP::cnmultifit"; }
151 #endif
152 
153  //! Return the full path to one of this module's data files
154  /** To read the data file "data_library" that was placed in the \c data
155  directory of this module, do something like
156  \code
157  std::ifstream in(IMP::cnmultifit::get_data_path("data_library"));
158  \endcode
159  This will ensure that the code works both when IMP is installed or
160  if used via the \c setup_environment.sh script.
161 
162  \note Each module has its own data directory, so be sure to use
163  this function from the correct module.
164  */
165 #if !defined(SWIG)
166  IMPCNMULTIFITEXPORT std::string get_data_path(std::string file_name);
167 #endif
168 
169  //! Return the full path to one of this module's example files
170  /** To read the example file "example_protein.pdb" that was placed
171  in the \c examples directory of this module, do something like
172  \code
173  std::ifstream in(IMP::cnmultifit::get_example_path("example_protein.pdb"));
174  \endcode
175  This will ensure that the code works both when IMP is installed or
176  if used via the \c setup_environment.sh script.
177 
178  \note Each module has its own example directory, so be sure to use
179  this function from the correct module.
180  */
181 #if !defined(SWIG)
182  IMPCNMULTIFITEXPORT std::string get_example_path(std::string file_name);
183 #endif
184  /** @} */
185 
186 
187 } } //namespace
188 
189 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
190 
191 #include <IMP/Showable.h>
192 #include <IMP/hash.h>
193 
194 namespace IMP{ namespace cnmultifit {
195 using ::IMP::Showable;
196 using ::IMP::operator<<;
197 using ::IMP::hash_value;
198 } } // namespace
199 namespace IMP{ namespace cnmultifit { namespace internal {
200 using ::IMP::Showable;
201 using ::IMP::operator<<;
202 using ::IMP::hash_value;
203 } } } // namespace
204 
205 #endif // !defined(SWIG) && !defined(IMP_DOXYGEN)
206 
207 
208 #include <IMP/compiler_macros.h>
209 
210 #endif /* IMPCNMULTIFIT_CONFIG_H */
211 
212 // Here so it is always parsed
213 
214 #ifdef IMPCNMULTIFIT_DEPRECATED_HEADER
215 #undef IMPCNMULTIFIT_DEPRECATED_HEADER
216 #undef IMPCNMULTIFIT_DEPRECATED_VALUE_DEF
217 #undef IMPCNMULTIFIT_DEPRECATED_VALUE_DECL
218 #undef IMPCNMULTIFIT_DEPRECATED_OBJECT_DEF
219 #undef IMPCNMULTIFIT_DEPRECATED_OBJECT_DECL
220 #undef IMPCNMULTIFIT_DEPRECATED_FUNCTION_DEF
221 #undef IMPCNMULTIFIT_DEPRECATED_FUNCTION_DECL
222 #undef IMPCNMULTIFIT_DEPRECATED_METHOD_DEF
223 #undef IMPCNMULTIFIT_DEPRECATED_METHOD_DECL
224 #undef IMPCNMULTIFIT_DEPRECATED_MACRO
225 #undef IMPCNMULTIFIT_SHOW_WARNINGS
226 #endif
227 
228 // the central modules we can update easily, so don't warn in them
229 #if defined( IMPCNMULTIFIT_COMPILATION) \
230  || defined(SWIG) || defined(IMP_SWIG_WRAPPER) \
231  || defined( IMPCNMULTIFIT_ALL) || defined(IMP_DOXYGEN) \
232  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
233  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
234  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
235  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
236  || defined(IMPSCOREFUNCTOR_COMPILATION) || defined(IMPRMF_COMPILATION) \
237  || defined(IMPGSL_COMPILATION)
238 #define IMPCNMULTIFIT_SHOW_WARNINGS 0
239 #else
240 #define IMPCNMULTIFIT_SHOW_WARNINGS 1
241 #endif
242 
243 // suppress header warnings with all header, SWIG wrapper and in the module
244 #if IMPCNMULTIFIT_SHOW_WARNINGS
245 #define IMPCNMULTIFIT_DEPRECATED_HEADER(version, help_message) \
246  IMP_PRAGMA(message(__FILE__ " is deprecated: " help_message))
247 #define IMPCNMULTIFIT_DEPRECATED_VALUE_DECL(version) \
248  IMP_DEPRECATED_ATTRIBUTE
249 #define IMPCNMULTIFIT_DEPRECATED_OBJECT_DECL(version) \
250  IMP_DEPRECATED_ATTRIBUTE
251 #define IMPCNMULTIFIT_DEPRECATED_FUNCTION_DECL(version) \
252  IMP_DEPRECATED_ATTRIBUTE
253 #define IMPCNMULTIFIT_DEPRECATED_METHOD_DECL(version) \
254  IMP_DEPRECATED_ATTRIBUTE
255 
256 #else //IMPCNMULTIFIT_SHOW_WARNINGS
257 /** See [deprecation support](@ref deprecation). */
258 #define IMPCNMULTIFIT_DEPRECATED_HEADER(version, help_message) \
259 /** See [deprecation support](@ref deprecation). */
260 #define IMPCNMULTIFIT_DEPRECATED_VALUE_DECL(version)
261 /** See [deprecation support](@ref deprecation). */
262 #define IMPCNMULTIFIT_DEPRECATED_OBJECT_DECL(version)
263 /** See [deprecation support](@ref deprecation). */
264 #define IMPCNMULTIFIT_DEPRECATED_FUNCTION_DECL(version)
265 /** See [deprecation support](@ref deprecation). */
266 #define IMPCNMULTIFIT_DEPRECATED_METHOD_DECL(version)
267 
268 #endif // IMPCNMULTIFIT_SHOW_WARNINGS
269 
270 // only warn about it in the all inclusion to cut down on copies
271 #if !defined(IMP_ALL) || defined(SWIG) || defined(IMP_DOXYGEN) \
272  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
273  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
274  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
275  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
276  || defined(IMPSCOREFUNCTOR_COMPILATION)
277 /** See [deprecation support](@ref deprecation). */
278 #define IMPCNMULTIFIT_DEPRECATED_MACRO(version, message)
279 
280 #else
281 #define IMPCNMULTIFIT_DEPRECATED_MACRO(version, message) \
282  IMP_DEPRECATED_MACRO(version, message)
283 #endif
284 
285 /** See [deprecation support](@ref deprecation). */
286 #define IMPCNMULTIFIT_DEPRECATED_VALUE_DEF(version, message) \
287  IMP_DEPRECATED_VALUE_RUNTIME_WARNING(version, message)
288 
289 /** See [deprecation support](@ref deprecation). */
290 #define IMPCNMULTIFIT_DEPRECATED_OBJECT_DEF(version, message) \
291  IMP_DEPRECATED_OBJECT_RUNTIME_WARNING(version, message)
292 
293 /** See [deprecation support](@ref deprecation). */
294 #define IMPCNMULTIFIT_DEPRECATED_FUNCTION_DEF(version, message) \
295  IMP_DEPRECATED_FUNCTION_RUNTIME_WARNING(version, message)
296 
297 /** See [deprecation support](@ref deprecation). */
298 #define IMPCNMULTIFIT_DEPRECATED_METHOD_DEF(version, message) \
299  IMP_DEPRECATED_METHOD_RUNTIME_WARNING(version, message)
300 
301 
302 #include <IMP/compiler_macros.h>
303 
304 #if defined(IMP_EXECUTABLE) && !defined(IMP_EXECUTABLE_WARNINGS)
305 IMP_COMPILER_ENABLE_WARNINGS
306 #define IMP_EXECUTABLE_WARNINGS
307 #endif
std::string get_data_path(std::string file_name)
Return the full path to one of this module's data files.
Helper functions for implementing hashes.
Helper class to aid in output of IMP classes to streams.
std::string get_example_path(std::string file_name)
Return the full path to one of this module's example files.
Various compiler workarounds.
std::string get_module_version()
Return the version of this module, as a string.