summaryrefslogtreecommitdiff
path: root/TAO/examples/Persistent_Grid/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Persistent_Grid/client.cpp')
-rw-r--r--TAO/examples/Persistent_Grid/client.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/examples/Persistent_Grid/client.cpp b/TAO/examples/Persistent_Grid/client.cpp
new file mode 100644
index 00000000000..c67b7b80261
--- /dev/null
+++ b/TAO/examples/Persistent_Grid/client.cpp
@@ -0,0 +1,22 @@
+// $Id$
+
+# include "Grid_Client_i.h"
+
+// The client program for the application.
+
+int
+main (int argc, char *argv[])
+{
+ Grid_Client_i client;
+
+ ACE_DEBUG ((LM_DEBUG,
+ "\nGrid client\n\n"));
+
+ if (client.run ("Grid", argc, argv) == -1)
+ return -1;
+ else
+ return 0;
+
+}
+
+