summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/Test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/ping_interrupt/Test_i.h')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/ping_interrupt/Test_i.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/Test_i.h b/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/Test_i.h
new file mode 100644
index 00000000000..9693977cc8c
--- /dev/null
+++ b/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/Test_i.h
@@ -0,0 +1,24 @@
+/* -*- C++ -*- $Id$ */
+
+#ifndef TEST_I_H_
+#define TEST_I_H_
+
+#include "TestS.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+#pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+class Test_i : public virtual POA_Test
+{
+public:
+ Test_i (short server_num);
+ virtual ~Test_i ();
+
+ virtual CORBA::Short get_server_num (CORBA::Short delay_secs);
+
+private:
+ CORBA::Short server_num_;
+};
+
+#endif /* TEST_I_H_ */