summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/Diamond_i.cpp
blob: 204f22da1984245965a28739d3c405c2730dc310 (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// $Id$

#include "Diamond_i.h"

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

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

char *
Top_i::shape (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("a point.");
}

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

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

char *
Left_i::shape (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("the left line");
}

char *
Left_i::color (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("black");
}

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

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

char *
Right_i::shape (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("the right line");
}

char *
Right_i::color (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("red");
  //
}

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

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

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

char *
Buttom_i::shape (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("a diamond");
}

char *
Buttom_i::color (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("translucent");
}

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

char *
Buttom_i::name (CORBA::Environment &)
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))
{
  return CORBA::string_dup ("Jubilee");
}