diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-10 19:02:09 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-10 19:02:09 +0000 |
commit | 0aa9869ded5e9fc4669fc913b4c1fee397ee53db (patch) | |
tree | 3b7f18ec35470aec5e6e34330c4745bd69ca3d89 /TAO/tao/BoundsC.cpp | |
parent | 11a1fa7d9723365a0a6a2f96b21687f959897ee6 (diff) | |
download | ATCD-0aa9869ded5e9fc4669fc913b4c1fee397ee53db.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.cpp | 12 |
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) { |