summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool4/Callback_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool4/Callback_i.h')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool4/Callback_i.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool4/Callback_i.h b/TAO/examples/CSD_Strategy/ThreadPool4/Callback_i.h
new file mode 100644
index 00000000000..c66fe818f94
--- /dev/null
+++ b/TAO/examples/CSD_Strategy/ThreadPool4/Callback_i.h
@@ -0,0 +1,27 @@
+// $Id$
+#ifndef CALLBACK_I_H
+#define CALLBACK_I_H
+
+#include "CallbackS.h"
+
+
+class Callback_i : public virtual POA_Callback,
+ public virtual PortableServer::RefCountServantBase
+{
+ public:
+
+ Callback_i();
+
+ virtual ~Callback_i();
+
+ virtual void test_method (
+ ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS
+ )
+ ACE_THROW_SPEC ((
+ CORBA::SystemException
+ ));
+
+};
+
+
+#endif