~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/orbsvcs/orbsvcs/Event/EC_Proxy_Disconnector.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * @file EC_Proxy_Disconnector.cpp
3
 
 *
4
 
 * EC_Proxy_Disconnector.cpp,v 1.1 2003/06/18 05:40:17 jwillemsen Exp
5
 
 *
6
 
 * @author Carlos O'Ryan <coryan@atdesk.com>
7
 
 */
8
 
 
9
 
#include "EC_Proxy_Disconnector.h"
10
 
 
11
 
void
12
 
TAO_EC_Supplier_Proxy_Disconnect_Functor::operator() (
13
 
                       RtecEventComm::PushSupplier_ptr supplier)
14
 
  ACE_THROW_SPEC (())
15
 
{
16
 
  ACE_DECLARE_NEW_CORBA_ENV;
17
 
  ACE_TRY
18
 
    {
19
 
      supplier->disconnect_push_supplier (ACE_ENV_SINGLE_ARG_PARAMETER);
20
 
      ACE_TRY_CHECK;
21
 
    }
22
 
  ACE_CATCHALL
23
 
    {
24
 
    }
25
 
  ACE_ENDTRY;
26
 
}
27
 
 
28
 
void
29
 
TAO_EC_Consumer_Proxy_Disconnect_Functor::operator() (
30
 
                       RtecEventComm::PushConsumer_ptr consumer)
31
 
  ACE_THROW_SPEC (())
32
 
{
33
 
  ACE_DECLARE_NEW_CORBA_ENV;
34
 
  ACE_TRY
35
 
    {
36
 
      consumer->disconnect_push_consumer (ACE_ENV_SINGLE_ARG_PARAMETER);
37
 
      ACE_TRY_CHECK;
38
 
    }
39
 
  ACE_CATCHALL
40
 
    {
41
 
    }
42
 
  ACE_ENDTRY;
43
 
}