3 //=============================================================================
7 * This class implements the Echo IDL interface.
10 //=============================================================================
21 * @brief Echo Object Implementation
24 class Echo_i
: public POA_Echo
28 Echo_i (CORBA::ORB_ptr o
);
31 ~Echo_i () override
= default;
33 /// Return the result sequences to the cllient.
34 Echo::List
*return_list () override
;
35 Echo::WList
*return_wlist () override
;
37 /// Shutdown the server.
38 void shutdown () override
;
44 void operator= (const Echo_i
&) = delete;