summaryrefslogtreecommitdiff
path: root/TAO/tao/BoundsC.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-10 19:02:09 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-10 19:02:09 +0000
commit6456f7b22139ee51efbc06e19a96a17aa72a75f7 (patch)
tree3b7f18ec35470aec5e6e34330c4745bd69ca3d89 /TAO/tao/BoundsC.cpp
parent19d2552d745fcf764104f32ae05614946195cfc4 (diff)
downloadATCD-6456f7b22139ee51efbc06e19a96a17aa72a75f7.tar.gz
ChangeLogTag: Thu Aug 10 13:58:09 2000 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/BoundsC.cpp')
-rw-r--r--TAO/tao/BoundsC.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/TAO/tao/BoundsC.cpp b/TAO/tao/BoundsC.cpp
index 4b17b459691..80f7b830f0d 100644
--- a/TAO/tao/BoundsC.cpp
+++ b/TAO/tao/BoundsC.cpp
@@ -17,7 +17,7 @@
// default constructor
CORBA_Bounds::CORBA_Bounds (void)
- : CORBA_UserException (CORBA::_tc_Bounds)
+ : CORBA_UserException ("IDL:omg.org/CORBA/Bounds:1.0")
{
}
@@ -34,9 +34,9 @@ void CORBA_Bounds::_tao_any_destructor (void *x)
// copy constructor
CORBA_Bounds::CORBA_Bounds (const CORBA::Bounds &_tao_excp)
- : CORBA_UserException (_tao_excp._type ())
+ : CORBA_UserException (_tao_excp._id ())
{
- }
+}
// assignment operator
CORBA_Bounds&
@@ -91,7 +91,11 @@ CORBA::Exception *CORBA_Bounds::_alloc (void)
return retval;
}
-
+CORBA::TypeCode_ptr
+CORBA_Bounds::_type (void) const
+{
+ return CORBA::TypeCode::_tc_Bounds;
+}
void operator<<= (CORBA::Any &_tao_any, const CORBA::Bounds &_tao_elem)
{