Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Smart_Proxies / Policy / Smart_Proxy_Impl.h
blob99d2d90ad89cf55be0b7166d8d58432738463ddd
1 #include "testC.h"
3 class Smart_Test_Factory : public virtual TAO_Test_Default_Proxy_Factory
5 public:
6 Smart_Test_Factory (int one_shot_factory = 1);
8 virtual Test_ptr create_proxy (Test_ptr proxy);
9 // This method will create the smart_proxy.
12 class Smart_Test_Proxy : public virtual TAO_Test_Smart_Proxy_Base
14 public:
15 Smart_Test_Proxy (Test_ptr proxy);
17 virtual CORBA::Short method (CORBA::Short boo);
18 // "Smartify" the method call!
20 // Don't need to add any extra functionality into <shutdown>, hence
21 // we don't define it.