summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/examples/ORT/sum_server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/examples/ORT/sum_server_i.h')
-rw-r--r--ACE/TAO/orbsvcs/examples/ORT/sum_server_i.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/examples/ORT/sum_server_i.h b/ACE/TAO/orbsvcs/examples/ORT/sum_server_i.h
new file mode 100644
index 00000000000..d9eb24f2943
--- /dev/null
+++ b/ACE/TAO/orbsvcs/examples/ORT/sum_server_i.h
@@ -0,0 +1,38 @@
+// $Id$
+
+//=============================================================================
+/**
+ * @file sum_server_i.h
+ *
+ * $Id$
+ *
+ * Implementation header for the "server" IDL interface for the
+ * ORT example.
+ *
+ * @author Priyanka Gontla <gontla_p@ociweb.com>
+ */
+//=============================================================================
+
+#ifndef SUM_SERVER_I_H
+#define SUM_SERVER_I_H
+
+#include "sum_serverS.h"
+
+// Must include this header file and link to TAO_IFR_Client.lib
+// to dynamically load this necessary library.
+#include "tao/IFR_Client/IFR_Client_Adapter_Impl.h"
+
+class sum_server_i : public virtual POA_ORT::sum_server
+{
+ public:
+
+ /// Constructor
+ sum_server_i ();
+
+ /// add variables method
+ CORBA::Long add_variables (CORBA::Long a,
+ CORBA::Long b);
+
+};
+
+#endif /* SUM_SERVER_I_H */