summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/Persistent_Filter/supplier.cpp
blob: c2aca21a2c10ae046af95041caf628a4f58b449f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// -*- C++ -*-
// $Id$

#include "Filter.h"

int
ACE_TMAIN (int argc, ACE_TCHAR *argv [])
{
  FilterClient client;

  try
    {
      client.init_supplier (argc, argv); //Init the Client

      client.run_supplier ();
    }
  catch (const CORBA::UserException& ue)
    {
      ue._tao_print_exception ("TLS_Client user error: ");
      return 1;
    }
  catch (const CORBA::SystemException& se)
    {
      se._tao_print_exception ("Supplier system error: ");
      return 1;
    }

  return 0;
}