diff options
Diffstat (limited to 'TAO/tao/Any.i')
-rw-r--r-- | TAO/tao/Any.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/TAO/tao/Any.i b/TAO/tao/Any.i index eb243d46614..7afc3814c12 100644 --- a/TAO/tao/Any.i +++ b/TAO/tao/Any.i @@ -83,6 +83,12 @@ CORBA_Any_var::~CORBA_Any_var (void) } ACE_INLINE +CORBA_Any_var::operator CORBA_Any &() +{ + return *this->ptr_; +} + +ACE_INLINE CORBA_Any_var::operator CORBA_Any *&() { return this->ptr_; |