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