summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ORB_Task.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ORB_Task.h')
-rwxr-xr-xACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ORB_Task.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ORB_Task.h b/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ORB_Task.h
new file mode 100755
index 00000000000..430d836e790
--- /dev/null
+++ b/ACE/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/ORB_Task.h
@@ -0,0 +1,25 @@
+/**
+ * @file ORB_Task.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ *
+ */
+#ifndef IMR_REGRESSION_ORB_TASK_H
+#define IMR_REGRESSION_ORB_TASK_H
+#include "tao/ORB.h"
+#include "ace/Task.h"
+
+class ORB_Task : public ACE_Task_Base
+{
+public:
+ ORB_Task (CORBA::ORB_ptr orb);
+
+ virtual int svc (void);
+
+private:
+ CORBA::ORB_var orb_;
+};
+
+#endif /* IMR_REGRESSION_ORB_TASK_H*/