Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Smart_Proxies / Benchmark / Smart_Proxy_Impl.h
blobcffbbb30f725f9747620d33e4fb0194e14f3594d
1 #include "testC.h"
2 class Smart_Test_Factory : public virtual TAO_Test_Default_Proxy_Factory
4 public:
5 Smart_Test_Factory ();
7 virtual Test_ptr create_proxy (Test_ptr proxy);
8 // This method will create the smart_proxy.
9 };
11 class Smart_Test_Proxy : public virtual TAO_Test_Smart_Proxy_Base
13 public:
14 Smart_Test_Proxy (Test_ptr proxy);
16 virtual CORBA::Short box_prices();
17 // "Smartify" the method call!
19 private:
20 CORBA::Short price_;