diff options
Diffstat (limited to 'TAO/tests/Smart_Proxies/Policy/Smart_Proxy_Impl.h')
-rw-r--r-- | TAO/tests/Smart_Proxies/Policy/Smart_Proxy_Impl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tests/Smart_Proxies/Policy/Smart_Proxy_Impl.h b/TAO/tests/Smart_Proxies/Policy/Smart_Proxy_Impl.h index f024b4b69f7..73515c2109e 100644 --- a/TAO/tests/Smart_Proxies/Policy/Smart_Proxy_Impl.h +++ b/TAO/tests/Smart_Proxies/Policy/Smart_Proxy_Impl.h @@ -8,8 +8,7 @@ public: Smart_Test_Factory (int one_shot_factory = 1); - virtual Test_ptr create_proxy (Test_ptr proxy - ACE_ENV_ARG_DECL_WITH_DEFAULTS); + virtual Test_ptr create_proxy (Test_ptr proxy); // This method will create the smart_proxy. }; @@ -18,8 +17,7 @@ class Smart_Test_Proxy : public virtual TAO_Test_Smart_Proxy_Base public: Smart_Test_Proxy (Test_ptr proxy); - virtual CORBA::Short method (CORBA::Short boo - ACE_ENV_ARG_DECL_WITH_DEFAULTS) + virtual CORBA::Short method (CORBA::Short boo) ACE_THROW_SPEC ((CORBA::SystemException, Test::Oops)); // "Smartify" the method call! |