IMP logo
IMP Reference Guide  develop.50fdd7fa33,2025/08/31
The Integrative Modeling Platform
example_config.h
1 // Autogenerated by ../../../../tmp/nightly-build-478/imp-20250831.develop.50fdd7fa33/tools/build/setup_module.py
2 // from ../../../../tmp/nightly-build-478/imp-20250831.develop.50fdd7fa33/tools/build/config_templates/header.h
3 // Do not edit - any changes will be lost!
4 
5 /*
6  * \file IMP/example/example_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, IMPEXAMPLE_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  * IMPEXAMPLEEXPORT 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::example namespace.
21  * This is simply achieved by wrapping things with the
22  * IMPEXAMPLE_BEGIN_NAMESPACE and IMPEXAMPLE_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 IMPEXAMPLE_CONFIG_H
31 #define IMPEXAMPLE_CONFIG_H
32 
33 #include <IMP/kernel_config.h>
34 #include <string>
35 
36 #ifdef _MSC_VER
37 #define NOMINMAX
38 
39 #ifdef IMPEXAMPLE_EXPORTS
40 #define IMPEXAMPLEEXPORT __declspec(dllexport)
41 #else // EXPORTS
42 #define IMPEXAMPLEEXPORT __declspec(dllimport)
43 #endif // EXPORTS
44 
45 #else // _MSC_VER
46 
47 #ifdef GCC_VISIBILITY
48 #define IMPEXAMPLEEXPORT __attribute__((visibility("default")))
49 #else // GCC_VISIBILITY
50 #define IMPEXAMPLEEXPORT
51 #endif // GCC_VISIBILITY
52 
53 #endif // _MSC_VER
54 
55 #if defined(_MSC_VER) && !defined(SWIG)
56 #ifdef IMPEXAMPLE_EXPORTS
57 
58 #define IMPEXAMPLE_EXPORT_TEMPLATE(name) \
59  template class __declspec(dllexport) name
60 
61 #else //EXPORTS
62 
63 #define IMPEXAMPLE_EXPORT_TEMPLATE(name) \
64  template class __declspec(dllimport) name
65 
66 #endif // EXPORTS
67 
68 #else // MSC and SWIG
69 #define IMPEXAMPLE_EXPORT_TEMPLATE(name) IMP_REQUIRE_SEMICOLON_NAMESPACE
70 
71 #endif // MSC and SWIG
72 
73 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
74 
75 #define IMPEXAMPLE_BEGIN_NAMESPACE \
76  IMP_COMPILER_ENABLE_WARNINGS namespace IMP{ namespace example {
77 
78 #define IMPEXAMPLE_END_NAMESPACE } } \
79 IMP_COMPILER_DISABLE_WARNINGS
80 
81 #define IMPEXAMPLE_BEGIN_INTERNAL_NAMESPACE IMPEXAMPLE_BEGIN_NAMESPACE \
82  namespace internal {
83 
84 #define IMPEXAMPLE_END_INTERNAL_NAMESPACE } IMPEXAMPLE_END_NAMESPACE
85 
86 #else // SWIG and DOXYGEN
87 #define IMPEXAMPLE_BEGIN_NAMESPACE namespace IMP{ namespace example {
88 
89 #define IMPEXAMPLE_END_NAMESPACE } }
90 
91 #define IMPEXAMPLE_BEGIN_INTERNAL_NAMESPACE IMPEXAMPLE_BEGIN_NAMESPACE\
92  namespace internal {
93 
94 #define IMPEXAMPLE_END_INTERNAL_NAMESPACE } IMPEXAMPLE_END_NAMESPACE
95 
96 #endif // SWIG AND DOXYGEN
97 
98 #define IMP_EXAMPLE_USE_IMP_ALGEBRA
99 #define IMP_EXAMPLE_HAS_IMP_ALGEBRA 1
100 #define IMP_EXAMPLE_USE_IMP_CGAL
101 #define IMP_EXAMPLE_HAS_IMP_CGAL 1
102 #define IMP_EXAMPLE_USE_IMP_DISPLAY
103 #define IMP_EXAMPLE_HAS_IMP_DISPLAY 1
104 #define IMP_EXAMPLE_USE_IMP_EM
105 #define IMP_EXAMPLE_HAS_IMP_EM 1
106 #define IMP_EXAMPLE_USE_IMP_ISD
107 #define IMP_EXAMPLE_HAS_IMP_ISD 1
108 #define IMP_EXAMPLE_USE_IMP_KERNEL
109 #define IMP_EXAMPLE_HAS_IMP_KERNEL 1
110 #define IMP_EXAMPLE_USE_IMP_RMF
111 #define IMP_EXAMPLE_HAS_IMP_RMF 1
112 #define IMP_EXAMPLE_USE_IMP_SAXS
113 #define IMP_EXAMPLE_HAS_IMP_SAXS 1
114 #define IMP_EXAMPLE_USE_IMP_SCORE_FUNCTOR
115 #define IMP_EXAMPLE_HAS_IMP_SCORE_FUNCTOR 1
116 #define IMP_EXAMPLE_USE_IMP_STATISTICS
117 #define IMP_EXAMPLE_HAS_IMP_STATISTICS 1
118 #define IMP_EXAMPLE_USE_BOOST_FILESYSTEM
119 #define IMP_EXAMPLE_HAS_BOOST_FILESYSTEM 1
120 #define IMP_EXAMPLE_USE_BOOST_GRAPH
121 #define IMP_EXAMPLE_HAS_BOOST_GRAPH 1
122 #define IMP_EXAMPLE_USE_BOOST_PROGRAMOPTIONS
123 #define IMP_EXAMPLE_HAS_BOOST_PROGRAMOPTIONS 1
124 #define IMP_EXAMPLE_USE_BOOST_RANDOM
125 #define IMP_EXAMPLE_HAS_BOOST_RANDOM 1
126 #define IMP_EXAMPLE_USE_BOOST_REGEX
127 #define IMP_EXAMPLE_HAS_BOOST_REGEX 1
128 #define IMP_EXAMPLE_USE_CGAL
129 #define IMP_EXAMPLE_HAS_CGAL 1
130 #define IMP_EXAMPLE_USE_HDF5
131 #define IMP_EXAMPLE_HAS_HDF5 1
132 #define IMP_EXAMPLE_USE_NUMPY
133 #define IMP_EXAMPLE_HAS_NUMPY 1
134 #define IMP_EXAMPLE_USE_RMF
135 #define IMP_EXAMPLE_HAS_RMF 1
136 #define IMP_EXAMPLE_USE_PYTHON_IHM
137 #define IMP_EXAMPLE_HAS_PYTHON_IHM 1
138 #define IMP_EXAMPLE_NO_EXAMPLEDEPENDENCY
139 #define IMP_EXAMPLE_HAS_EXAMPLEDEPENDENCY 0
140 
141 // functions are defined explicitly for SWIG
142 namespace IMP{ namespace example {
143 /** \name Standard module functions
144  All \imp modules have a set of standard functions to help get information
145  about the module and about files associated with the module.
146  @{
147  */
148 #if !defined(SWIG) || defined(IMP_SWIG_WRAPPER)
149  IMPEXAMPLEEXPORT std::string get_module_version();
150 #endif
151 
152 #if !defined(SWIG) || defined(IMP_SWIG_WRAPPER)
153  // SWIG will whine about duplicate definitions of function
154  inline std::string get_module_name() { return "IMP::example"; }
155 #endif
156 
157  //! Return the full path to one of this module's data files
158  /** To read the data file "data_library" that was placed in the \c data
159  directory of this module, do something like
160  \code
161  std::ifstream in(IMP::example::get_data_path("data_library"));
162  \endcode
163  This will ensure that the code works both when IMP is installed or
164  if used via the \c setup_environment.sh script.
165 
166  \note Each module has its own data directory, so be sure to use
167  this function from the correct module.
168  */
169 #if !defined(SWIG)
170  IMPEXAMPLEEXPORT std::string get_data_path(std::string file_name);
171 #endif
172 
173  //! Return the full path to one of this module's example files
174  /** To read the example file "example_protein.pdb" that was placed
175  in the \c examples directory of this module, do something like
176  \code
177  std::ifstream in(IMP::example::get_example_path("example_protein.pdb"));
178  \endcode
179  This will ensure that the code works both when IMP is installed or
180  if used via the \c setup_environment.sh script.
181 
182  \note Each module has its own example directory, so be sure to use
183  this function from the correct module.
184  */
185 #if !defined(SWIG)
186  IMPEXAMPLEEXPORT std::string get_example_path(std::string file_name);
187 #endif
188  /** @} */
189 
190 
191 } } //namespace
192 
193 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
194 
195 #include <IMP/Showable.h>
196 #include <IMP/hash.h>
197 
198 namespace IMP{ namespace example {
199 using ::IMP::Showable;
200 using ::IMP::operator<<;
201 using ::IMP::hash_value;
202 } } // namespace
203 namespace IMP{ namespace example { namespace internal {
204 using ::IMP::Showable;
205 using ::IMP::operator<<;
206 using ::IMP::hash_value;
207 } } } // namespace
208 
209 #endif // !defined(SWIG) && !defined(IMP_DOXYGEN)
210 
211 
212 #include <IMP/compiler_macros.h>
213 
214 #endif /* IMPEXAMPLE_CONFIG_H */
215 
216 // Here so it is always parsed
217 
218 #ifdef IMPEXAMPLE_DEPRECATED_HEADER
219 #undef IMPEXAMPLE_DEPRECATED_HEADER
220 #undef IMPEXAMPLE_DEPRECATED_VALUE_DEF
221 #undef IMPEXAMPLE_DEPRECATED_VALUE_DECL
222 #undef IMPEXAMPLE_DEPRECATED_OBJECT_DEF
223 #undef IMPEXAMPLE_DEPRECATED_OBJECT_DECL
224 #undef IMPEXAMPLE_DEPRECATED_FUNCTION_DEF
225 #undef IMPEXAMPLE_DEPRECATED_FUNCTION_DECL
226 #undef IMPEXAMPLE_DEPRECATED_METHOD_DEF
227 #undef IMPEXAMPLE_DEPRECATED_METHOD_DECL
228 #undef IMPEXAMPLE_DEPRECATED_MACRO
229 #undef IMPEXAMPLE_SHOW_WARNINGS
230 #endif
231 
232 // the central modules we can update easily, so don't warn in them
233 #if defined( IMPEXAMPLE_COMPILATION) \
234  || defined(SWIG) || defined(IMP_SWIG_WRAPPER) \
235  || defined( IMPEXAMPLE_ALL) || defined(IMP_DOXYGEN) \
236  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
237  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
238  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
239  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
240  || defined(IMPSCOREFUNCTOR_COMPILATION) || defined(IMPRMF_COMPILATION) \
241  || defined(IMPGSL_COMPILATION)
242 #define IMPEXAMPLE_SHOW_WARNINGS 0
243 #else
244 #define IMPEXAMPLE_SHOW_WARNINGS 1
245 #endif
246 
247 // suppress header warnings with all header, SWIG wrapper and in the module
248 #if IMPEXAMPLE_SHOW_WARNINGS
249 #define IMPEXAMPLE_DEPRECATED_HEADER(version, help_message) \
250  IMP_PRAGMA(message(__FILE__ " is deprecated: " help_message))
251 #define IMPEXAMPLE_DEPRECATED_VALUE_DECL(version) \
252  IMP_DEPRECATED_ATTRIBUTE
253 #define IMPEXAMPLE_DEPRECATED_OBJECT_DECL(version) \
254  IMP_DEPRECATED_ATTRIBUTE
255 #define IMPEXAMPLE_DEPRECATED_FUNCTION_DECL(version) \
256  IMP_DEPRECATED_ATTRIBUTE
257 #define IMPEXAMPLE_DEPRECATED_METHOD_DECL(version) \
258  IMP_DEPRECATED_ATTRIBUTE
259 
260 #else //IMPEXAMPLE_SHOW_WARNINGS
261 /** See [deprecation support](@ref deprecation). */
262 #define IMPEXAMPLE_DEPRECATED_HEADER(version, help_message) \
263 /** See [deprecation support](@ref deprecation). */
264 #define IMPEXAMPLE_DEPRECATED_VALUE_DECL(version)
265 /** See [deprecation support](@ref deprecation). */
266 #define IMPEXAMPLE_DEPRECATED_OBJECT_DECL(version)
267 /** See [deprecation support](@ref deprecation). */
268 #define IMPEXAMPLE_DEPRECATED_FUNCTION_DECL(version)
269 /** See [deprecation support](@ref deprecation). */
270 #define IMPEXAMPLE_DEPRECATED_METHOD_DECL(version)
271 
272 #endif // IMPEXAMPLE_SHOW_WARNINGS
273 
274 // only warn about it in the all inclusion to cut down on copies
275 #if !defined(IMP_ALL) || defined(SWIG) || defined(IMP_DOXYGEN) \
276  || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
277  || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
278  || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
279  || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
280  || defined(IMPSCOREFUNCTOR_COMPILATION)
281 /** See [deprecation support](@ref deprecation). */
282 #define IMPEXAMPLE_DEPRECATED_MACRO(version, message)
283 
284 #else
285 #define IMPEXAMPLE_DEPRECATED_MACRO(version, message) \
286  IMP_DEPRECATED_MACRO(version, message)
287 #endif
288 
289 /** See [deprecation support](@ref deprecation). */
290 #define IMPEXAMPLE_DEPRECATED_VALUE_DEF(version, message) \
291  IMP_DEPRECATED_VALUE_RUNTIME_WARNING(version, message)
292 
293 /** See [deprecation support](@ref deprecation). */
294 #define IMPEXAMPLE_DEPRECATED_OBJECT_DEF(version, message) \
295  IMP_DEPRECATED_OBJECT_RUNTIME_WARNING(version, message)
296 
297 /** See [deprecation support](@ref deprecation). */
298 #define IMPEXAMPLE_DEPRECATED_FUNCTION_DEF(version, message) \
299  IMP_DEPRECATED_FUNCTION_RUNTIME_WARNING(version, message)
300 
301 /** See [deprecation support](@ref deprecation). */
302 #define IMPEXAMPLE_DEPRECATED_METHOD_DEF(version, message) \
303  IMP_DEPRECATED_METHOD_RUNTIME_WARNING(version, message)
304 
305 
306 #include <IMP/compiler_macros.h>
307 
308 #if defined(IMP_EXECUTABLE) && !defined(IMP_EXECUTABLE_WARNINGS)
309 IMP_COMPILER_ENABLE_WARNINGS
310 #define IMP_EXECUTABLE_WARNINGS
311 #endif
Helper functions for implementing hashes.
Helper class to aid in output of IMP classes to streams.
std::string get_module_version()
Return the version of this module, as a string.
Various compiler workarounds.
std::string get_example_path(std::string file_name)
Return the full path to one of this module's example files.
std::string get_data_path(std::string file_name)
Return the full path to one of this module's data files.