summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/FT_App/FT_Replica.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/tests/FT_App/FT_Replica.cpp')
-rw-r--r--trunk/TAO/orbsvcs/tests/FT_App/FT_Replica.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/tests/FT_App/FT_Replica.cpp b/trunk/TAO/orbsvcs/tests/FT_App/FT_Replica.cpp
new file mode 100644
index 00000000000..1fcc2339969
--- /dev/null
+++ b/trunk/TAO/orbsvcs/tests/FT_App/FT_Replica.cpp
@@ -0,0 +1,22 @@
+/* -*- C++ -*- */
+//=============================================================================
+/**
+ * @file FT_Replica.cpp
+ *
+ * $Id$
+ *
+ * This file is part of Fault Tolerant CORBA.
+ * Implement the FT_TEST::Replica IDL interface.
+ *
+ * @author Dale Wilson <wilson_d@ociweb.com>
+ */
+//=============================================================================
+
+#include "tao/Utils/Server_Main.h"
+#include "FT_ReplicaFactory_i.h"
+
+int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
+{
+ TAO::Utils::Server_Main<FT_ReplicaFactory_i> server_main("TestReplicaFactory");
+ return server_main.run(argc, argv);
+}