summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Inherited_Operation/InheritedOp_i.cpp
blob: d7727558b6a500cac721402b2b7aa07f64335ff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id:$

#include "InheritedOp_i.h"

Derived_i::Derived_i (CORBA::ORB_ptr orb)
  : orb_ (orb)
{
}

void
Derived_i::BaseOp (void)
{
  ACE_DEBUG ((LM_DEBUG, "BaseOp upcall successful\n"));
}

void
Derived_i::shutdown (void)
{
  orb_->shutdown ();
}