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

« back to all changes in this revision

Viewing changes to TAO/tests/Portable_Interceptors/IORInterceptor/test_i.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
 
// -*- C++ -*-
2
 
 
3
 
#include "test_i.h"
4
 
 
5
 
ACE_RCSID (IORInterceptors,
6
 
           test_i,
7
 
           "test_i.cpp,v 1.3 2002/01/29 20:21:09 okellogg Exp")
8
 
 
9
 
test_i::test_i (CORBA::ORB_ptr orb)
10
 
  : orb_ (CORBA::ORB::_duplicate (orb))
11
 
{
12
 
}
13
 
 
14
 
void
15
 
test_i::shutdown (ACE_ENV_SINGLE_ARG_DECL)
16
 
  ACE_THROW_SPEC ((CORBA::SystemException))
17
 
{
18
 
  ACE_DEBUG ((LM_DEBUG,
19
 
              "\"test_i\" is shutting down.\n"));
20
 
  this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
21
 
}