summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
diff options
context:
space:
mode:
authorPhil Mesnier <mesnier_p@ociweb.com>2014-09-12 14:23:55 +0000
committerPhil Mesnier <mesnier_p@ociweb.com>2014-09-12 14:23:55 +0000
commit4603fb929cff102ff3cbbca760b8483d1a329ee2 (patch)
tree33f836f03d2313e48415444667ab2fa1cfb6ef7b /TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
parentd46afcea703c6a5cd70118d25fa6a1d8157a6e56 (diff)
downloadATCD-4603fb929cff102ff3cbbca760b8483d1a329ee2.tar.gz
Fri Sep 12 14:10:47 UTC 2014 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/ImplRepo_Service/Activator_Options.cpp: * orbsvcs/ImplRepo_Service/Locator_Options.cpp: Set the default debug level to be 0 rather than 1. Services should be quiet by default. * orbsvcs/ImplRepo_Service/ImR_Activator.idl: * orbsvcs/ImplRepo_Service/ImR_Activator_i.h: * orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp: * orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp: * orbsvcs/ImplRepo_Service/Locator_Repository.h: * orbsvcs/ImplRepo_Service/Locator_Repository.cpp: * orbsvcs/ImplRepo_Service/Shared_Backing_Store.h: Add an enhancement to allow a restarted IMR Locator verify that servers * orbsvcs/tests/ImplRepo/RestartIMR: * bin/tao_other_tests.lst: Add new test to verify the feature. * orbsvcs/tests/ImplRepo/servers_list/run_test.pl: Fix a typo.
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h')
-rwxr-xr-xTAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
new file mode 100755
index 00000000000..4c0e0ef2ceb
--- /dev/null
+++ b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
@@ -0,0 +1,48 @@
+// $Id$
+#ifndef IMR_RECONNECTSERVER_H
+#define IMR_RECONNECTSERVER_H
+
+#include "testS.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+#pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+
+class Test_Dummy_i
+ : public virtual POA_Test::Dummy
+{
+public:
+ // Constructor
+ Test_Dummy_i (void);
+
+ // Destructor
+ virtual ~Test_Dummy_i (void);
+
+ virtual char * getMessage (void);
+};
+
+class Test_Time_i
+ : public virtual POA_Test::Time
+{
+public:
+ // Constructor
+ Test_Time_i (void);
+
+ // Destructor
+ virtual ~Test_Time_i (void);
+
+ virtual
+ ::CORBA::Long current_time (
+ void
+ );
+
+ virtual
+ void shutdown (
+ void
+ );
+};
+
+
+#endif /* IMR_RECONNECTSERVER_H */
+