diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
commit | 3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (patch) | |
tree | 197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/examples/Simple/grid/client.cpp | |
parent | 6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (diff) | |
download | ATCD-3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c.tar.gz |
Repo restructuring
Diffstat (limited to 'TAO/examples/Simple/grid/client.cpp')
-rw-r--r-- | TAO/examples/Simple/grid/client.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/examples/Simple/grid/client.cpp b/TAO/examples/Simple/grid/client.cpp new file mode 100644 index 00000000000..4bec0e49dad --- /dev/null +++ b/TAO/examples/Simple/grid/client.cpp @@ -0,0 +1,23 @@ +// $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; + +} + + |