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

« back to all changes in this revision

Viewing changes to TAO/orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.inl

  • 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
 
// -*- C++ -*-
2
 
//
3
 
//FT_IOGR_Property.inl,v 1.1 2003/10/09 02:57:06 huangming Exp
4
 
 
5
 
ACE_INLINE
6
 
TAO_FT_IOGR_Property::TAO_FT_IOGR_Property (
7
 
    FT::TagFTGroupTaggedComponent &ft_group)
8
 
  :ft_group_tagged_component_ (&ft_group)
9
 
{
10
 
}
11
 
 
12
 
ACE_INLINE
13
 
TAO_FT_IOGR_Property::TAO_FT_IOGR_Property (void)
14
 
  :ft_group_tagged_component_ (0)
15
 
{
16
 
}
17
 
 
18
 
ACE_INLINE
19
 
TAO_FT_IOGR_Property::~TAO_FT_IOGR_Property (void)
20
 
{
21
 
}
22
 
 
23
 
ACE_INLINE CORBA::Boolean
24
 
TAO_FT_IOGR_Property::reset_tagged_components (
25
 
    FT::TagFTGroupTaggedComponent &ft_group)
26
 
{
27
 
  this->ft_group_tagged_component_ =
28
 
    &ft_group;
29
 
 
30
 
  return 1;
31
 
}