summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/Diamond_i.h
blob: 0f530eb65120324fdbb9736552ff402ade975982 (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
// $Id$

#if !defined (TAO_DIAMOND_I_H)
#define TAO_DIAMOND_I_H

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "DiamondS.h"

class Diamond_Export Top_i : public POA_Diamond::Top
{
public:
  Top_i ();
  ~Top_i ();
  // Ctor and dtor.

  virtual CORBA::String shape (CORBA::Environment &);
  // Return the shape of this object (interface.)
};

class Diamond_Export Left_i : public POA_Diamond::Left
{
public:
  Left_i ();
  ~Left_i ();
  // Ctor, dtor.

  virtual CORBA::String shape (CORBA::Environment &);
  // Return the shape of this object (interface.)

  virtual CORBA::String color (CORBA::Environment &);
  // Return the color of this object (interface.)
};

class Diamond_Export Right_i : public POA_Diamond::Right
{
public:
  Right_i ();
  ~Right_i ();
  // Ctor, dtor.

  virtual CORBA::String shape (CORBA::Environment &);
  // Return the shape of this object (interface.)

  virtual CORBA::String color (CORBA::Environment &);
  // Return the color of this object (interface.)

  virtual CORBA::Long width (CORBA::Environment &);
  // Return the width of the stuff.
};

class Diamond_Export Buttom_i : public POA_Diamond::Buttom
{
public:
  Buttom_i ();
  ~Buttom_i ();
  // Ctor, dtor.

  virtual CORBA::String shape (CORBA::Environment &);
  // Return the shape of this object (interface.)

  virtual CORBA::String color (CORBA::Environment &);
  // Return the color of this object (interface.)

  virtual CORBA::Long width (CORBA::Environment &);
  // Return the width of the stuff.

  virtual CORBA::String name (CORBA::Environment &);
  // Return the name of the object.
};
#endif /* TAO_DIAMOND_I_H */