summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/Diamond_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Collocation/Diamond_i.h')
-rw-r--r--TAO/tests/Collocation/Diamond_i.h85
1 files changed, 0 insertions, 85 deletions
diff --git a/TAO/tests/Collocation/Diamond_i.h b/TAO/tests/Collocation/Diamond_i.h
deleted file mode 100644
index d5a255c68c0..00000000000
--- a/TAO/tests/Collocation/Diamond_i.h
+++ /dev/null
@@ -1,85 +0,0 @@
-// $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 (void);
- ~Top_i (void);
- // Ctor and dtor.
-
- virtual CORBA::String shape (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the shape of this object (interface.)
-};
-
-class Diamond_Export Left_i : public POA_Diamond::Left
-{
-public:
- Left_i (void);
- ~Left_i (void);
- // Ctor, dtor.
-
- virtual CORBA::String shape (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the shape of this object (interface.)
-
- virtual CORBA::String color (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the color of this object (interface.)
-};
-
-class Diamond_Export Right_i : public POA_Diamond::Right
-{
-public:
- Right_i (void);
- ~Right_i (void);
- // Ctor, dtor.
-
- virtual CORBA::String shape (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the shape of this object (interface.)
-
- virtual CORBA::String color (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the color of this object (interface.)
-
- virtual CORBA::Long width (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the width of the stuff.
-};
-
-class Diamond_Export Buttom_i : public POA_Diamond::Buttom
-{
-public:
- Buttom_i (void);
- ~Buttom_i (void);
- // Ctor, dtor.
-
- virtual CORBA::String shape (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the shape of this object (interface.)
-
- virtual CORBA::String color (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the color of this object (interface.)
-
- virtual CORBA::Long width (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the width of the stuff.
-
- virtual CORBA::String name (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return the name of the object.
-};
-
-#endif /* TAO_DIAMOND_I_H */
-