diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-10-27 15:32:42 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-10-27 15:32:42 +0000 |
commit | 9dbdce9d73652d53fef812fa960ed9c81caa9085 (patch) | |
tree | 51c5faefc54bff982d7ada7fcf00b6187af64288 /cpp/include/IceStorm/Service.h | |
parent | Fixed WIN32 (diff) | |
download | ice-9dbdce9d73652d53fef812fa960ed9c81caa9085.tar.bz2 ice-9dbdce9d73652d53fef812fa960ed9c81caa9085.tar.xz ice-9dbdce9d73652d53fef812fa960ed9c81caa9085.zip |
Fix windows build
Diffstat (limited to 'cpp/include/IceStorm/Service.h')
-rw-r--r-- | cpp/include/IceStorm/Service.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/include/IceStorm/Service.h b/cpp/include/IceStorm/Service.h index 9b9cc777777..db427a04a00 100644 --- a/cpp/include/IceStorm/Service.h +++ b/cpp/include/IceStorm/Service.h @@ -13,11 +13,11 @@ #include <IceBox/IceBox.h> #include <IceStorm/IceStorm.h> -#ifndef ICE_STORM_SERVICE_API -# ifdef ICE_STORM_SERVICE_API_EXPORTS -# define ICE_STORM_SERVICE_API ICE_DECLSPEC_EXPORT +#ifndef ICE_STORM_API +# ifdef ICE_STORM_API_EXPORTS +# define ICE_STORM_API ICE_DECLSPEC_EXPORT # else -# define ICE_STORM_SERVICE_API ICE_DECLSPEC_IMPORT +# define ICE_STORM_API ICE_DECLSPEC_IMPORT # endif #endif @@ -27,7 +27,7 @@ namespace IceStorm class Service; typedef ::IceInternal::Handle< ::IceStorm::Service> ServicePtr; -class ICE_STORM_SERVICE_API Service : public ::IceBox::Service +class ICE_STORM_API Service : public ::IceBox::Service { public: |