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