summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/Diamond_i.cpp
blob: c6ab3f9cd7ff8eb3eb0e04b426e509eea50163e5 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// $Id$

#include "Diamond_i.h"

Top_i::Top_i ()
{
  // no-op.
}

Top_i::~Top_i ()
{
  // No-op.
}

CORBA::String
Top_i::shape (CORBA::Environment &)
{
  return CORBA::string_dup ("a point.");
}

Left_i::Left_i ()
{
  // No-op.
}

Left_i::~Left_i ()
{
  // No-op.
}

CORBA::String
Left_i::shape (CORBA::Environment &)
{
  return CORBA::string_dup ("the left line");
}

CORBA::String
Left_i::color (CORBA::Environment &)
{
  return CORBA::string_dup ("black");
};

Right_i::Right_i ()
{
  // no-op.
}

Right_i::~Right_i ()
{
  // no-op.
}

CORBA::String
Right_i::shape (CORBA::Environment &)
{
  return CORBA::string_dup ("the right line");
}

CORBA::String
Right_i::color (CORBA::Environment &)
{
  return CORBA::string_dup ("red");
  //
}

CORBA::Long
Right_i::width (CORBA::Environment &)
{
  return 0;
}

Buttom_i::Buttom_i ()
{
  // no-op.
}

Buttom_i::~Buttom_i ()
{
  // no-op.
}

CORBA::String
Buttom_i::shape (CORBA::Environment &)
{
  return CORBA::string_dup ("a diamond");
}

CORBA::String
Buttom_i::color (CORBA::Environment &)
{
  return CORBA::string_dup ("translucent");
}

CORBA::Long
Buttom_i::width (CORBA::Environment &)
{
  return 100;
}

CORBA::String
Buttom_i::name (CORBA::Environment &)
{
  return CORBA::string_dup ("Jubilee");
}