diff options
Diffstat (limited to 'TAO/tao/RT_ORBInitializer.h')
-rw-r--r-- | TAO/tao/RT_ORBInitializer.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/TAO/tao/RT_ORBInitializer.h b/TAO/tao/RT_ORBInitializer.h index 80a75352780..3340e4b946f 100644 --- a/TAO/tao/RT_ORBInitializer.h +++ b/TAO/tao/RT_ORBInitializer.h @@ -38,6 +38,8 @@ #pragma warning(disable:4250) #endif /* _MSC_VER */ +#if TAO_HAS_RT_CORBA == 1 + /// RTCORBA ORB initializer. class TAO_Export TAO_RT_ORBInitializer : public virtual PortableInterceptor::ORBInitializer, @@ -56,12 +58,15 @@ public: private: void register_policy_factories ( - PortableInterceptor::ORBInitInfo_ptr info - TAO_ENV_ARG_DECL); + PortableInterceptor::ORBInitInfo_ptr info + TAO_ENV_ARG_DECL + ); ///< Register RTCORBA policy factories. }; +#endif /* TAO_HAS_RT_CORBA == 1 */ + #if defined(_MSC_VER) && (_MSC_VER >= 1200) #pragma warning(pop) #endif /* _MSC_VER */ |