Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / examples / ORT / sum_server_i.h
blob730542b0aa4e1a2a692904aa2011e69fd6754ea1
1 //=============================================================================
2 /**
3 * @file sum_server_i.h
5 * Implementation header for the "server" IDL interface for the
6 * ORT example.
8 * @author Priyanka Gontla <gontla_p@ociweb.com>
9 */
10 //=============================================================================
12 #ifndef SUM_SERVER_I_H
13 #define SUM_SERVER_I_H
15 #include "sum_serverS.h"
17 // Must include this header file and link to TAO_IFR_Client.lib
18 // to dynamically load this necessary library.
19 #include "tao/IFR_Client/IFR_Client_Adapter_Impl.h"
21 class sum_server_i : public virtual POA_ORT::sum_server
23 public:
25 /// Constructor
26 sum_server_i ();
28 /// add variables method
29 CORBA::Long add_variables (CORBA::Long a,
30 CORBA::Long b);
34 #endif /* SUM_SERVER_I_H */