summaryrefslogtreecommitdiff
path: root/TAO/tests/Servant_To_Reference_Test/Test_i.cpp
blob: 6f98d20f46fe1be9b867189ff16205c32d10f67c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "Test_i.h"

One_Impl::One_Impl (CORBA::ORB_ptr orb)
  : orb_ (CORBA::ORB::_duplicate (orb))
{
}

char *
One_Impl::get_string (void)
{
  return CORBA::string_dup ("One_Impl there!");
}

Two_Impl::Two_Impl (CORBA::ORB_ptr orb)
  : orb_ (CORBA::ORB::_duplicate (orb))
{
}

char *
Two_Impl::get_string (void)
{
  return CORBA::string_dup ("One_Impl there!");
}


Three_Impl::Three_Impl (CORBA::ORB_ptr orb)
  : orb_ (CORBA::ORB::_duplicate (orb))
{
}

char *
Three_Impl::get_string (void)
{
  return CORBA::string_dup ("Three_Impl there!");
}