diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-12-15 02:02:44 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-12-15 02:02:44 +0000 |
commit | db22ff217c6a87bbfa6fce280597c4bb74b8db87 (patch) | |
tree | 418893e7dace48e2fcd3b8a51c071477ceedab8d /TAO/tao/Any.h | |
parent | 75db8d33aaf38187c915be5d6debcd9bc476e47c (diff) | |
download | ATCD-db22ff217c6a87bbfa6fce280597c4bb74b8db87.tar.gz |
ChangeLogTag: Sat Dec 14 19:56:13 2002 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Any.h')
-rw-r--r-- | TAO/tao/Any.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/TAO/tao/Any.h b/TAO/tao/Any.h index 5bcf72a0e05..eb7315a2bbe 100644 --- a/TAO/tao/Any.h +++ b/TAO/tao/Any.h @@ -332,12 +332,13 @@ namespace TAO TAO_SYNCH_MUTEX * refcount_lock_; }; - class Unknown_IDL_Type : public Any_Impl + class TAO_Export Unknown_IDL_Type : public Any_Impl { public: Unknown_IDL_Type (CORBA::TypeCode_ptr, - ACE_Message_Block *, - int byte_order); + const ACE_Message_Block *, + int byte_order, + CORBA::Boolean release_tc = 0); virtual ~Unknown_IDL_Type (void); virtual CORBA::Boolean marshal_value (TAO_OutputCDR &); @@ -350,6 +351,7 @@ namespace TAO private: ACE_Message_Block *cdr_; int byte_order_; + CORBA::Boolean release_tc_; }; }; |