summaryrefslogtreecommitdiff
path: root/TAO/examples/Callback_Quoter/consumer_client.cpp
blob: 949c992940514ff2d8cd5556d0a67a471dbb13e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

#include "Client_i.h"

// This function runs the Callback Quoter Consumer client.

int
main (int argc, char **argv)
{
  Client_i client;

  ACE_DEBUG ((LM_DEBUG,
              "\n\tConsumer client\n\n"));

  if (client.init (argc, argv) == -1)
    return -1;
  else
    return client.run ();
}