summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/FT_App/FTAPP_FactoryRegistry_Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/tests/FT_App/FTAPP_FactoryRegistry_Main.cpp')
-rw-r--r--ACE/TAO/orbsvcs/tests/FT_App/FTAPP_FactoryRegistry_Main.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/tests/FT_App/FTAPP_FactoryRegistry_Main.cpp b/ACE/TAO/orbsvcs/tests/FT_App/FTAPP_FactoryRegistry_Main.cpp
new file mode 100644
index 00000000000..131b6daa877
--- /dev/null
+++ b/ACE/TAO/orbsvcs/tests/FT_App/FTAPP_FactoryRegistry_Main.cpp
@@ -0,0 +1,22 @@
+/* -*- C++ -*- */
+//=============================================================================
+/**
+ * @file FTAPP_FactoryRegistry_Main.cpp
+ *
+ * $Id$
+ *
+ * This file is part of Fault Tolerant CORBA.
+ * This file provides the main routine for a stub FactoryRegistry
+ *
+ * @author Dale Wilson <wilson_d@ociweb.com>
+ */
+//=============================================================================
+
+#include "tao/Utils/Server_Main.h"
+#include "orbsvcs/PortableGroup/PG_FactoryRegistry.h"
+
+int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
+{
+ TAO::Utils::Server_Main<TAO::PG_FactoryRegistry> server_main("FactoryRegistry");
+ return server_main.run(argc, argv);
+}