3 class Smart_Test_Factory
: public virtual TAO_Test_Default_Proxy_Factory
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
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.