summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/Destroy/main.cpp
blob: c829b8efa06ede91baf10bf9968c7c069d7233b7 (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
30
31
32
33
//$Id$

#include "../lib/Notify_Test_Client.h"
#include "orbsvcs/orbsvcs/NotifyExtC.h"
#include "ace/OS_main.h"

int
ACE_TMAIN (int argc, char *argv[])
{
  ACE_TRY_NEW_ENV
    {
      // Initialize the base class.
      Notify_Test_Client client;
      client.init (argc, argv ACE_ENV_ARG_PARAMETER);
      ACE_CHECK_RETURN (-1);
      
      CosNotifyChannelAdmin::EventChannelFactory_ptr ecf = client.notify_factory ();
      
      NotifyExt::EventChannelFactory_var ecf_ext = NotifyExt::EventChannelFactory::_narrow (ecf);
      
      ecf_ext->destroy (ACE_ENV_SINGLE_ARG_PARAMETER);
      ACE_TRY_CHECK;
    }
  ACE_CATCHANY
    {
      ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
                           ACE_LIB_TEXT("Failed to run the program\n"));
      return 1;
    }
  ACE_ENDTRY;
  
  return 0;
}