Another windows build fix.

This commit is contained in:
Gunnar Beutner 2013-03-15 13:53:50 +01:00
parent b404798234
commit 4e765c58de
4 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ private:
* *
* @ingroup base * @ingroup base
*/ */
class DynamicTypeRegistry : public Registry<DynamicType::Ptr> class I2_BASE_API DynamicTypeRegistry : public Registry<DynamicType::Ptr>
{ }; { };
/** /**

View File

@ -29,7 +29,7 @@ namespace icinga
* @ingroup base * @ingroup base
*/ */
template<typename T> template<typename T>
class I2_BASE_API Registry class Registry
{ {
public: public:
typedef map<String, T, string_iless> ItemMap; typedef map<String, T, string_iless> ItemMap;

View File

@ -29,7 +29,7 @@ namespace icinga
* @ingroup base * @ingroup base
*/ */
template<typename T> template<typename T>
class I2_BASE_API Singleton class Singleton
{ {
public: public:
static T *GetInstance(void) static T *GetInstance(void)

View File

@ -72,7 +72,7 @@ private:
void DestroyScanner(void); void DestroyScanner(void);
}; };
class ConfigFragmentRegistry : public Registry<String> class I2_CONFIG_API ConfigFragmentRegistry : public Registry<String>
{ }; { };
/** /**