summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/Persistent_Grid/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/examples/Persistent_Grid/server.cpp')
-rw-r--r--ACE/TAO/examples/Persistent_Grid/server.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/ACE/TAO/examples/Persistent_Grid/server.cpp b/ACE/TAO/examples/Persistent_Grid/server.cpp
new file mode 100644
index 00000000000..5b830ac001c
--- /dev/null
+++ b/ACE/TAO/examples/Persistent_Grid/server.cpp
@@ -0,0 +1,41 @@
+// $Id$
+
+#include "Simple_util.h"
+#include "Grid_i.h"
+
+// This is the main driver program for the time and date server.
+
+int
+ACE_TMAIN(int argc, ACE_TCHAR *argv[])
+{
+ Server<Grid_Factory_i> server;
+
+ ACE_DEBUG ((LM_DEBUG,
+ "\n\tGrid server\n\n"));
+
+
+ try
+ {
+ if (server.init ("Grid",
+ argc,
+ argv) == -1)
+ return 1;
+ else
+ {
+ server.run ();
+ }
+ }
+ catch (const CORBA::UserException& userex)
+ {
+ userex._tao_print_exception ("User Exception");
+ return -1;
+ }
+ catch (const CORBA::SystemException& sysex)
+ {
+ sysex._tao_print_exception ("System Exception");
+ return -1;
+ }
+
+ return 0;
+}
+