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