30 #ifndef IMPMISC_CONFIG_H
31 #define IMPMISC_CONFIG_H
33 #include <IMP/base/base_config.h>
39 #ifdef IMPMISC_EXPORTS
40 #define IMPMISCEXPORT __declspec(dllexport)
42 #define IMPMISCEXPORT __declspec(dllimport)
48 #define IMPMISCEXPORT __attribute__ ((visibility("default")))
49 #else // GCC_VISIBILITY
51 #endif // GCC_VISIBILITY
54 #if defined(_MSC_VER) && !defined(SWIG)
55 #ifdef IMPMISC_EXPORTS
57 #define IMPMISC_EXPORT_TEMPLATE(name) template class __declspec(dllexport) name
61 #define IMPMISC_EXPORT_TEMPLATE(name) template class __declspec(dllimport) name
66 #define IMPMISC_EXPORT_TEMPLATE(name) IMP_REQUIRE_SEMICOLON_NAMESPACE
68 #endif // MSC and SWIG
70 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
72 #define IMPMISC_BEGIN_NAMESPACE \
73 IMP_COMPILER_ENABLE_WARNINGS \
74 namespace IMP { namespace misc { \
76 #define IMPMISC_END_NAMESPACE \
78 IMP_COMPILER_DISABLE_WARNINGS
80 #define IMPMISC_BEGIN_INTERNAL_NAMESPACE \
81 IMPMISC_BEGIN_NAMESPACE namespace internal {
84 #define IMPMISC_END_INTERNAL_NAMESPACE \
85 } IMPMISC_END_NAMESPACE
88 #define IMPMISC_BEGIN_NAMESPACE \
89 namespace IMP { namespace misc {
91 #define IMPMISC_END_NAMESPACE \
94 #define IMPMISC_BEGIN_INTERNAL_NAMESPACE \
95 IMPMISC_BEGIN_NAMESPACE namespace internal {
98 #define IMPMISC_END_INTERNAL_NAMESPACE \
99 } IMPMISC_END_NAMESPACE
103 #define IMP_MISC_USE_IMP_ALGEBRA
104 #define IMP_MISC_HAS_IMP_ALGEBRA 1
105 #define IMP_MISC_USE_IMP_BASE
106 #define IMP_MISC_HAS_IMP_BASE 1
107 #define IMP_MISC_USE_IMP_CGAL
108 #define IMP_MISC_HAS_IMP_CGAL 1
109 #define IMP_MISC_USE_IMP_CONTAINER
110 #define IMP_MISC_HAS_IMP_CONTAINER 1
111 #define IMP_MISC_USE_IMP_DISPLAY
112 #define IMP_MISC_HAS_IMP_DISPLAY 1
113 #define IMP_MISC_USE_IMP_KERNEL
114 #define IMP_MISC_HAS_IMP_KERNEL 1
115 #define IMP_MISC_USE_IMP_SCORE_FUNCTOR
116 #define IMP_MISC_HAS_IMP_SCORE_FUNCTOR 1
117 #define IMP_MISC_USE_BOOST_FILESYSTEM
118 #define IMP_MISC_HAS_BOOST_FILESYSTEM 1
119 #define IMP_MISC_USE_BOOST_PROGRAMOPTIONS
120 #define IMP_MISC_HAS_BOOST_PROGRAMOPTIONS 1
121 #define IMP_MISC_USE_BOOST_RANDOM
122 #define IMP_MISC_HAS_BOOST_RANDOM 1
123 #define IMP_MISC_USE_BOOST_REGEX
124 #define IMP_MISC_HAS_BOOST_REGEX 1
125 #define IMP_MISC_USE_BOOST_SYSTEM
126 #define IMP_MISC_HAS_BOOST_SYSTEM 1
127 #define IMP_MISC_USE_CGAL
128 #define IMP_MISC_HAS_CGAL 1
132 namespace IMP {
namespace misc {
139 IMPMISCEXPORT std::string get_module_version();
144 inline std::string get_module_name() {
151 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
156 namespace IMP {
namespace misc {
157 using ::IMP::base::Showable;
158 using ::IMP::base::operator<<;
159 using ::IMP::base::hash_value;
161 namespace IMP {
namespace misc {
namespace internal {
162 using ::IMP::base::Showable;
163 using ::IMP::base::operator<<;
164 using ::IMP::base::hash_value;
167 #endif // !defined(SWIG) && !defined(IMP_DOXYGEN)
172 namespace IMP {
namespace misc {
185 IMPMISCEXPORT std::string
get_data_path(std::string file_name);