29 #ifndef IMPPMI_CONFIG_H
30 #define IMPPMI_CONFIG_H
32 #include <IMP/base/base_config.h>
38 #define IMPPMIEXPORT __declspec(dllexport)
40 #define IMPPMIEXPORT __declspec(dllimport)
46 #define IMPPMIEXPORT __attribute__((visibility("default")))
47 #else // GCC_VISIBILITY
49 #endif // GCC_VISIBILITY
53 #if defined(_MSC_VER) && !defined(SWIG)
56 #define IMPPMI_EXPORT_TEMPLATE(name) \
57 template class __declspec(dllexport) name
61 #define IMPPMI_EXPORT_TEMPLATE(name) \
62 template class __declspec(dllimport) name
67 #define IMPPMI_EXPORT_TEMPLATE(name) IMP_REQUIRE_SEMICOLON_NAMESPACE
69 #endif // MSC and SWIG
71 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
73 #define IMPPMI_BEGIN_NAMESPACE \
74 IMP_COMPILER_ENABLE_WARNINGS namespace IMP{namespace pmi {
76 #define IMPPMI_END_NAMESPACE } } \
77 IMP_COMPILER_DISABLE_WARNINGS
79 #define IMPPMI_BEGIN_INTERNAL_NAMESPACE IMPPMI_BEGIN_NAMESPACE \
82 #define IMPPMI_END_INTERNAL_NAMESPACE } IMPPMI_END_NAMESPACE
84 #else // SWIG and DOXYGEN
85 #define IMPPMI_BEGIN_NAMESPACE namespace IMP{namespace pmi {
87 #define IMPPMI_END_NAMESPACE } }
89 #define IMPPMI_BEGIN_INTERNAL_NAMESPACE IMPPMI_BEGIN_NAMESPACE\
92 #define IMPPMI_END_INTERNAL_NAMESPACE } IMPPMI_END_NAMESPACE
94 #endif // SWIG AND DOXYGEN
96 #define IMP_PMI_USE_IMP_ALGEBRA
97 #define IMP_PMI_HAS_IMP_ALGEBRA 1
98 #define IMP_PMI_USE_IMP_BASE
99 #define IMP_PMI_HAS_IMP_BASE 1
100 #define IMP_PMI_USE_IMP_CGAL
101 #define IMP_PMI_HAS_IMP_CGAL 1
102 #define IMP_PMI_USE_IMP_DISPLAY
103 #define IMP_PMI_HAS_IMP_DISPLAY 1
104 #define IMP_PMI_USE_IMP_KERNEL
105 #define IMP_PMI_HAS_IMP_KERNEL 1
106 #define IMP_PMI_USE_IMP_SCORE_FUNCTOR
107 #define IMP_PMI_HAS_IMP_SCORE_FUNCTOR 1
108 #define IMP_PMI_USE_BOOST_FILESYSTEM
109 #define IMP_PMI_HAS_BOOST_FILESYSTEM 1
110 #define IMP_PMI_USE_BOOST_PROGRAMOPTIONS
111 #define IMP_PMI_HAS_BOOST_PROGRAMOPTIONS 1
112 #define IMP_PMI_USE_BOOST_RANDOM
113 #define IMP_PMI_HAS_BOOST_RANDOM 1
114 #define IMP_PMI_USE_BOOST_SYSTEM
115 #define IMP_PMI_HAS_BOOST_SYSTEM 1
116 #define IMP_PMI_USE_CGAL
117 #define IMP_PMI_HAS_CGAL 1
118 #define IMP_PMI_USE_HDF5
119 #define IMP_PMI_HAS_HDF5 1
130 IMPPMIEXPORT std::string get_module_version();
135 inline std::string get_module_name() {
return "IMP::pmi"; }
150 IMPPMIEXPORT std::string
get_data_path(std::string file_name);
174 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
179 namespace IMP {
namespace pmi {
180 using ::IMP::base::Showable;
181 using ::IMP::base::operator<<;
182 using ::IMP::base::hash_value;
184 namespace IMP {
namespace pmi {
namespace internal {
185 using ::IMP::base::Showable;
186 using ::IMP::base::operator<<;
187 using ::IMP::base::hash_value;
190 #endif // !defined(SWIG) && !defined(IMP_DOXYGEN)
199 #ifdef IMPPMI_DEPRECATED_HEADER
200 #undef IMPPMI_DEPRECATED_HEADER
201 #undef IMPPMI_DEPRECATED_VALUE_DEF
202 #undef IMPPMI_DEPRECATED_VALUE_DECL
203 #undef IMPPMI_DEPRECATED_OBJECT_DEF
204 #undef IMPPMI_DEPRECATED_OBJECT_DECL
205 #undef IMPPMI_DEPRECATED_FUNCTION_DEF
206 #undef IMPPMI_DEPRECATED_FUNCTION_DECL
207 #undef IMPPMI_DEPRECATED_METHOD_DEF
208 #undef IMPPMI_DEPRECATED_METHOD_DECL
209 #undef IMPPMI_DEPRECATED_MACRO
210 #undef IMPPMI_SHOW_WARNINGS
214 #if defined( IMPPMI_COMPILATION) \
215 || defined(SWIG) || defined(IMP_SWIG_WRAPPER) \
216 || defined( IMPPMI_ALL) || defined(IMP_DOXYGEN) \
217 || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
218 || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
219 || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
220 || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
221 || defined(IMPSCOREFUNCTOR_COMPILATION) || defined(IMPRMF_COMPILATION) \
222 || defined(IMPGSL_COMPILATION)
223 #define IMPPMI_SHOW_WARNINGS 0
225 #define IMPPMI_SHOW_WARNINGS 1
229 #if IMPPMI_SHOW_WARNINGS
230 #define IMPPMI_DEPRECATED_HEADER(version, help_message) \
231 IMP_PRAGMA(message(__FILE__ " is deprecated: " help_message))
232 #define IMPPMI_DEPRECATED_VALUE_DECL(version) \
233 IMP_DEPRECATED_ATTRIBUTE
234 #define IMPPMI_DEPRECATED_OBJECT_DECL(version) \
235 IMP_DEPRECATED_ATTRIBUTE
236 #define IMPPMI_DEPRECATED_FUNCTION_DECL(version) \
237 IMP_DEPRECATED_ATTRIBUTE
238 #define IMPPMI_DEPRECATED_METHOD_DECL(version) \
239 IMP_DEPRECATED_ATTRIBUTE
241 #else //IMPPMI_SHOW_WARNINGS
243 #define IMPPMI_DEPRECATED_HEADER(version, help_message) \
245 #define IMPPMI_DEPRECATED_VALUE_DECL(version)
247 #define IMPPMI_DEPRECATED_OBJECT_DECL(version)
249 #define IMPPMI_DEPRECATED_FUNCTION_DECL(version)
251 #define IMPPMI_DEPRECATED_METHOD_DECL(version)
253 #endif // IMPPMI_SHOW_WARNINGS
256 #if !defined(IMP_ALL) || defined(SWIG) || defined(IMP_DOXYGEN) \
257 || defined(IMPBASE_COMPILATION) || defined(IMPKERNEL_COMPILATION) \
258 || defined(IMPCORE_COMPILATION) || defined(IMPATOM_COMPILATION) \
259 || defined(IMPSTATISTICS_COMPILATION) || defined(IMPDOMINO_COMPILATION) \
260 || defined(IMPCONTAINER_COMPILATION) || defined(IMPDISPLAY_COMPILATION) \
261 || defined(IMPSCOREFUNCTOR_COMPILATION)
263 #define IMPPMI_DEPRECATED_MACRO(version, message)
266 #define IMPPMI_DEPRECATED_MACRO(version, message) \
267 IMP_DEPRECATED_MACRO(version, message)
271 #define IMPPMI_DEPRECATED_VALUE_DEF(version, message) \
272 IMP_DEPRECATED_VALUE_RUNTIME_WARNING(version, message)
275 #define IMPPMI_DEPRECATED_OBJECT_DEF(version, message) \
276 IMP_DEPRECATED_OBJECT_RUNTIME_WARNING(version, message)
279 #define IMPPMI_DEPRECATED_FUNCTION_DEF(version, message) \
280 IMP_DEPRECATED_FUNCTION_RUNTIME_WARNING(version, message)
283 #define IMPPMI_DEPRECATED_METHOD_DEF(version, message) \
284 IMP_DEPRECATED_METHOD_RUNTIME_WARNING(version, message)
289 #if defined(IMP_EXECUTABLE) && !defined(IMP_EXECUTABLE_WARNINGS)
290 IMP_COMPILER_ENABLE_WARNINGS
291 #define IMP_EXECUTABLE_WARNINGS
std::string get_data_path(std::string file_name)
Return the full path to installed data.
std::string get_example_path(std::string file_name)
Return the path to installed example data for this module.
Various compiler workarounds.