summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/POA/Implicit_Activation/Simple.cpp
blob: f0b417fa4426ae639791d161906f5d629a6f0a52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// $Id$
//
#include "Simple.h"

ACE_RCSID(Activation, Simple, "$Id$")

Simple::Simple (void)
{
}

void
Simple::destroy (void)
{
  PortableServer::POA_var poa = this->_default_POA ();

  PortableServer::ObjectId_var oid =
    poa->servant_to_id (this);

  poa->deactivate_object (oid.in ());
}