summaryrefslogtreecommitdiff
path: root/TAO/tao/PollableC.i
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-29 03:52:40 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-29 03:52:40 +0000
commit7c93fe9abfd2b7535c59a282d5a08b660fd7f5e8 (patch)
tree67521836dcc0ac048e3b3e8782edfbf83c239121 /TAO/tao/PollableC.i
parent934ff725e4420340b3ffd071132c1c34031523b4 (diff)
downloadATCD-7c93fe9abfd2b7535c59a282d5a08b660fd7f5e8.tar.gz
ChangeLogTag:Fri Apr 28 20:09:34 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/PollableC.i')
-rw-r--r--TAO/tao/PollableC.i307
1 files changed, 124 insertions, 183 deletions
diff --git a/TAO/tao/PollableC.i b/TAO/tao/PollableC.i
index aff7bf0f492..3a67d2abcb0 100644
--- a/TAO/tao/PollableC.i
+++ b/TAO/tao/PollableC.i
@@ -1,31 +1,23 @@
-// $Id$
+/* -*- C++ -*- $Id$ */
-ACE_INLINE
-CORBA_Pollable::CORBA_Pollable (void) // default constructor
-{}
+// ****** Code generated by the The ACE ORB (TAO) IDL Compiler *******
+// TAO and the TAO IDL Compiler have been developed by the Center for
+// Distributed Object Computing at Washington University, St. Louis.
+//
+// Information about TAO is available at:
+// http://www.cs.wustl.edu/~schmidt/TAO.html
ACE_INLINE
-CORBA_Pollable::CORBA_Pollable (TAO_Stub *objref, TAO_ServantBase *_tao_servant, CORBA::Boolean _tao_collocated) // constructor
- : CORBA_Object (objref, _tao_servant, _tao_collocated)
+CORBA_Pollable::CORBA_Pollable (void) // default constructor
{}
ACE_INLINE
CORBA_Pollable::~CORBA_Pollable (void) // destructor
{}
-ACE_INLINE CORBA_Pollable_ptr
-CORBA_Pollable::_duplicate (CORBA_Pollable_ptr obj)
-{
- if (!CORBA::is_nil (obj))
- obj->_add_ref ();
- return obj;
-}
-ACE_INLINE CORBA_Pollable_ptr
-CORBA_Pollable::_nil (void)
-{
- return (CORBA_Pollable_ptr)0;
-}
+#if !defined (_CORBA_POLLABLE___VAR_CI_)
+#define _CORBA_POLLABLE___VAR_CI_
// *************************************************************
// Inline operations for class CORBA_Pollable_var
@@ -41,14 +33,14 @@ CORBA_Pollable_var::CORBA_Pollable_var (CORBA_Pollable_ptr p)
: ptr_ (p)
{}
-ACE_INLINE CORBA_Pollable_ptr
+ACE_INLINE ::CORBA_Pollable_ptr
CORBA_Pollable_var::ptr (void) const
{
return this->ptr_;
}
ACE_INLINE
-CORBA_Pollable_var::CORBA_Pollable_var (const CORBA_Pollable_var &p) // copy constructor
+CORBA_Pollable_var::CORBA_Pollable_var (const ::CORBA_Pollable_var &p) // copy constructor
: ptr_ (CORBA_Pollable::_duplicate (p.ptr ()))
{}
@@ -67,63 +59,70 @@ CORBA_Pollable_var::operator= (CORBA_Pollable_ptr p)
}
ACE_INLINE CORBA_Pollable_var &
-CORBA_Pollable_var::operator= (const CORBA_Pollable_var &p)
+CORBA_Pollable_var::operator= (const ::CORBA_Pollable_var &p)
{
if (this != &p)
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_Pollable::_duplicate (p.ptr ());
+ this->ptr_ = ::CORBA_Pollable::_duplicate (p.ptr ());
}
return *this;
}
ACE_INLINE
-CORBA_Pollable_var::operator const CORBA_Pollable_ptr &() const // cast
+CORBA_Pollable_var::operator const ::CORBA_Pollable_ptr &() const // cast
{
return this->ptr_;
}
ACE_INLINE
-CORBA_Pollable_var::operator CORBA_Pollable_ptr &() // cast
+CORBA_Pollable_var::operator ::CORBA_Pollable_ptr &() // cast
{
return this->ptr_;
}
-ACE_INLINE CORBA_Pollable_ptr
+ACE_INLINE ::CORBA_Pollable_ptr
CORBA_Pollable_var::operator-> (void) const
{
return this->ptr_;
}
-ACE_INLINE CORBA_Pollable_ptr
+ACE_INLINE ::CORBA_Pollable_ptr
CORBA_Pollable_var::in (void) const
{
return this->ptr_;
}
-ACE_INLINE CORBA_Pollable_ptr &
+ACE_INLINE ::CORBA_Pollable_ptr &
CORBA_Pollable_var::inout (void)
{
return this->ptr_;
}
-ACE_INLINE CORBA_Pollable_ptr &
+ACE_INLINE ::CORBA_Pollable_ptr &
CORBA_Pollable_var::out (void)
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_Pollable::_nil ();
+ this->ptr_ = ::CORBA_Pollable::_nil ();
return this->ptr_;
}
-ACE_INLINE CORBA_Pollable_ptr
+ACE_INLINE ::CORBA_Pollable_ptr
CORBA_Pollable_var::_retn (void)
{
// yield ownership of managed obj reference
- CORBA_Pollable_ptr val = this->ptr_;
- this->ptr_ = CORBA_Pollable::_nil ();
+ ::CORBA_Pollable_ptr val = this->ptr_;
+ this->ptr_ = ::CORBA_Pollable::_nil ();
return val;
}
+
+#endif /* end #if !defined */
+
+
+#if !defined (_CORBA_POLLABLE___OUT_CI_)
+#define _CORBA_POLLABLE___OUT_CI_
+
// *************************************************************
// Inline operations for class CORBA_Pollable_out
// *************************************************************
@@ -132,7 +131,7 @@ ACE_INLINE
CORBA_Pollable_out::CORBA_Pollable_out (CORBA_Pollable_ptr &p)
: ptr_ (p)
{
- this->ptr_ = CORBA_Pollable::_nil ();
+ this->ptr_ = ::CORBA_Pollable::_nil ();
}
ACE_INLINE
@@ -140,25 +139,25 @@ CORBA_Pollable_out::CORBA_Pollable_out (CORBA_Pollable_var &p) // constructor fr
: ptr_ (p.out ())
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_Pollable::_nil ();
+ this->ptr_ = ::CORBA_Pollable::_nil ();
}
ACE_INLINE
-CORBA_Pollable_out::CORBA_Pollable_out (const CORBA_Pollable_out &p) // copy constructor
- : ptr_ (ACE_const_cast (CORBA_Pollable_out&,p).ptr_)
+CORBA_Pollable_out::CORBA_Pollable_out (const ::CORBA_Pollable_out &p) // copy constructor
+ : ptr_ (ACE_const_cast (CORBA_Pollable_out &, p).ptr_)
{}
-ACE_INLINE CORBA_Pollable_out &
-CORBA_Pollable_out::operator= (const CORBA_Pollable_out &p)
+ACE_INLINE ::CORBA_Pollable_out &
+CORBA_Pollable_out::operator= (const ::CORBA_Pollable_out &p)
{
- this->ptr_ = ACE_const_cast (CORBA_Pollable_out&,p).ptr_;
+ this->ptr_ = ACE_const_cast (CORBA_Pollable_out&, p).ptr_;
return *this;
}
ACE_INLINE CORBA_Pollable_out &
-CORBA_Pollable_out::operator= (const CORBA_Pollable_var &p)
+CORBA_Pollable_out::operator= (const ::CORBA_Pollable_var &p)
{
- this->ptr_ = CORBA_Pollable::_duplicate (p.ptr ());
+ this->ptr_ = ::CORBA_Pollable::_duplicate (p.ptr ());
return *this;
}
@@ -170,50 +169,37 @@ CORBA_Pollable_out::operator= (CORBA_Pollable_ptr p)
}
ACE_INLINE
-CORBA_Pollable_out::operator CORBA_Pollable_ptr &() // cast
+CORBA_Pollable_out::operator ::CORBA_Pollable_ptr &() // cast
{
return this->ptr_;
}
-ACE_INLINE CORBA_Pollable_ptr &
+ACE_INLINE ::CORBA_Pollable_ptr &
CORBA_Pollable_out::ptr (void) // ptr
{
return this->ptr_;
}
-ACE_INLINE CORBA_Pollable_ptr
+ACE_INLINE ::CORBA_Pollable_ptr
CORBA_Pollable_out::operator-> (void)
{
return this->ptr_;
}
-ACE_INLINE
-CORBA_DIIPollable::CORBA_DIIPollable (void) // default constructor
-{}
+
+#endif /* end #if !defined */
ACE_INLINE
-CORBA_DIIPollable::CORBA_DIIPollable (TAO_Stub *objref, TAO_ServantBase *_tao_servant, CORBA::Boolean _tao_collocated) // constructor
- : CORBA_Object (objref, _tao_servant, _tao_collocated)
+CORBA_DIIPollable::CORBA_DIIPollable (void) // default constructor
{}
ACE_INLINE
CORBA_DIIPollable::~CORBA_DIIPollable (void) // destructor
{}
-ACE_INLINE CORBA_DIIPollable_ptr
-CORBA_DIIPollable::_duplicate (CORBA_DIIPollable_ptr obj)
-{
- if (!CORBA::is_nil (obj))
- obj->_add_ref ();
- return obj;
-}
-
-ACE_INLINE CORBA_DIIPollable_ptr
-CORBA_DIIPollable::_nil (void)
-{
- return (CORBA_DIIPollable_ptr)0;
-}
+#if !defined (_CORBA_DIIPOLLABLE___VAR_CI_)
+#define _CORBA_DIIPOLLABLE___VAR_CI_
// *************************************************************
// Inline operations for class CORBA_DIIPollable_var
@@ -229,14 +215,14 @@ CORBA_DIIPollable_var::CORBA_DIIPollable_var (CORBA_DIIPollable_ptr p)
: ptr_ (p)
{}
-ACE_INLINE CORBA_DIIPollable_ptr
+ACE_INLINE ::CORBA_DIIPollable_ptr
CORBA_DIIPollable_var::ptr (void) const
{
return this->ptr_;
}
ACE_INLINE
-CORBA_DIIPollable_var::CORBA_DIIPollable_var (const CORBA_DIIPollable_var &p) // copy constructor
+CORBA_DIIPollable_var::CORBA_DIIPollable_var (const ::CORBA_DIIPollable_var &p) // copy constructor
: ptr_ (CORBA_DIIPollable::_duplicate (p.ptr ()))
{}
@@ -255,63 +241,70 @@ CORBA_DIIPollable_var::operator= (CORBA_DIIPollable_ptr p)
}
ACE_INLINE CORBA_DIIPollable_var &
-CORBA_DIIPollable_var::operator= (const CORBA_DIIPollable_var &p)
+CORBA_DIIPollable_var::operator= (const ::CORBA_DIIPollable_var &p)
{
if (this != &p)
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_DIIPollable::_duplicate (p.ptr ());
+ this->ptr_ = ::CORBA_DIIPollable::_duplicate (p.ptr ());
}
return *this;
}
ACE_INLINE
-CORBA_DIIPollable_var::operator const CORBA_DIIPollable_ptr &() const // cast
+CORBA_DIIPollable_var::operator const ::CORBA_DIIPollable_ptr &() const // cast
{
return this->ptr_;
}
ACE_INLINE
-CORBA_DIIPollable_var::operator CORBA_DIIPollable_ptr &() // cast
+CORBA_DIIPollable_var::operator ::CORBA_DIIPollable_ptr &() // cast
{
return this->ptr_;
}
-ACE_INLINE CORBA_DIIPollable_ptr
+ACE_INLINE ::CORBA_DIIPollable_ptr
CORBA_DIIPollable_var::operator-> (void) const
{
return this->ptr_;
}
-ACE_INLINE CORBA_DIIPollable_ptr
+ACE_INLINE ::CORBA_DIIPollable_ptr
CORBA_DIIPollable_var::in (void) const
{
return this->ptr_;
}
-ACE_INLINE CORBA_DIIPollable_ptr &
+ACE_INLINE ::CORBA_DIIPollable_ptr &
CORBA_DIIPollable_var::inout (void)
{
return this->ptr_;
}
-ACE_INLINE CORBA_DIIPollable_ptr &
+ACE_INLINE ::CORBA_DIIPollable_ptr &
CORBA_DIIPollable_var::out (void)
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_DIIPollable::_nil ();
+ this->ptr_ = ::CORBA_DIIPollable::_nil ();
return this->ptr_;
}
-ACE_INLINE CORBA_DIIPollable_ptr
+ACE_INLINE ::CORBA_DIIPollable_ptr
CORBA_DIIPollable_var::_retn (void)
{
// yield ownership of managed obj reference
- CORBA_DIIPollable_ptr val = this->ptr_;
- this->ptr_ = CORBA_DIIPollable::_nil ();
+ ::CORBA_DIIPollable_ptr val = this->ptr_;
+ this->ptr_ = ::CORBA_DIIPollable::_nil ();
return val;
}
+
+#endif /* end #if !defined */
+
+
+#if !defined (_CORBA_DIIPOLLABLE___OUT_CI_)
+#define _CORBA_DIIPOLLABLE___OUT_CI_
+
// *************************************************************
// Inline operations for class CORBA_DIIPollable_out
// *************************************************************
@@ -320,7 +313,7 @@ ACE_INLINE
CORBA_DIIPollable_out::CORBA_DIIPollable_out (CORBA_DIIPollable_ptr &p)
: ptr_ (p)
{
- this->ptr_ = CORBA_DIIPollable::_nil ();
+ this->ptr_ = ::CORBA_DIIPollable::_nil ();
}
ACE_INLINE
@@ -328,25 +321,25 @@ CORBA_DIIPollable_out::CORBA_DIIPollable_out (CORBA_DIIPollable_var &p) // const
: ptr_ (p.out ())
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_DIIPollable::_nil ();
+ this->ptr_ = ::CORBA_DIIPollable::_nil ();
}
ACE_INLINE
-CORBA_DIIPollable_out::CORBA_DIIPollable_out (const CORBA_DIIPollable_out &p) // copy constructor
- : ptr_ (ACE_const_cast (CORBA_DIIPollable_out&,p).ptr_)
+CORBA_DIIPollable_out::CORBA_DIIPollable_out (const ::CORBA_DIIPollable_out &p) // copy constructor
+ : ptr_ (ACE_const_cast (CORBA_DIIPollable_out &, p).ptr_)
{}
-ACE_INLINE CORBA_DIIPollable_out &
-CORBA_DIIPollable_out::operator= (const CORBA_DIIPollable_out &p)
+ACE_INLINE ::CORBA_DIIPollable_out &
+CORBA_DIIPollable_out::operator= (const ::CORBA_DIIPollable_out &p)
{
- this->ptr_ = ACE_const_cast (CORBA_DIIPollable_out&,p).ptr_;
+ this->ptr_ = ACE_const_cast (CORBA_DIIPollable_out&, p).ptr_;
return *this;
}
ACE_INLINE CORBA_DIIPollable_out &
-CORBA_DIIPollable_out::operator= (const CORBA_DIIPollable_var &p)
+CORBA_DIIPollable_out::operator= (const ::CORBA_DIIPollable_var &p)
{
- this->ptr_ = CORBA_DIIPollable::_duplicate (p.ptr ());
+ this->ptr_ = ::CORBA_DIIPollable::_duplicate (p.ptr ());
return *this;
}
@@ -358,49 +351,37 @@ CORBA_DIIPollable_out::operator= (CORBA_DIIPollable_ptr p)
}
ACE_INLINE
-CORBA_DIIPollable_out::operator CORBA_DIIPollable_ptr &() // cast
+CORBA_DIIPollable_out::operator ::CORBA_DIIPollable_ptr &() // cast
{
return this->ptr_;
}
-ACE_INLINE CORBA_DIIPollable_ptr &
+ACE_INLINE ::CORBA_DIIPollable_ptr &
CORBA_DIIPollable_out::ptr (void) // ptr
{
return this->ptr_;
}
-ACE_INLINE CORBA_DIIPollable_ptr
+ACE_INLINE ::CORBA_DIIPollable_ptr
CORBA_DIIPollable_out::operator-> (void)
{
return this->ptr_;
}
-ACE_INLINE
-CORBA_PollableSet::CORBA_PollableSet (void) // default constructor
-{}
+
+#endif /* end #if !defined */
ACE_INLINE
-CORBA_PollableSet::CORBA_PollableSet (TAO_Stub *objref, TAO_ServantBase *_tao_servant, CORBA::Boolean _tao_collocated) // constructor
- : CORBA_Object (objref, _tao_servant, _tao_collocated)
+CORBA_PollableSet::CORBA_PollableSet (void) // default constructor
{}
ACE_INLINE
CORBA_PollableSet::~CORBA_PollableSet (void) // destructor
{}
-ACE_INLINE CORBA_PollableSet_ptr
-CORBA_PollableSet::_duplicate (CORBA_PollableSet_ptr obj)
-{
- if (!CORBA::is_nil (obj))
- obj->_add_ref ();
- return obj;
-}
-ACE_INLINE CORBA_PollableSet_ptr
-CORBA_PollableSet::_nil (void)
-{
- return (CORBA_PollableSet_ptr)0;
-}
+#if !defined (_CORBA_POLLABLESET___VAR_CI_)
+#define _CORBA_POLLABLESET___VAR_CI_
// *************************************************************
// Inline operations for class CORBA_PollableSet_var
@@ -416,14 +397,14 @@ CORBA_PollableSet_var::CORBA_PollableSet_var (CORBA_PollableSet_ptr p)
: ptr_ (p)
{}
-ACE_INLINE CORBA_PollableSet_ptr
+ACE_INLINE ::CORBA_PollableSet_ptr
CORBA_PollableSet_var::ptr (void) const
{
return this->ptr_;
}
ACE_INLINE
-CORBA_PollableSet_var::CORBA_PollableSet_var (const CORBA_PollableSet_var &p) // copy constructor
+CORBA_PollableSet_var::CORBA_PollableSet_var (const ::CORBA_PollableSet_var &p) // copy constructor
: ptr_ (CORBA_PollableSet::_duplicate (p.ptr ()))
{}
@@ -442,63 +423,70 @@ CORBA_PollableSet_var::operator= (CORBA_PollableSet_ptr p)
}
ACE_INLINE CORBA_PollableSet_var &
-CORBA_PollableSet_var::operator= (const CORBA_PollableSet_var &p)
+CORBA_PollableSet_var::operator= (const ::CORBA_PollableSet_var &p)
{
if (this != &p)
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_PollableSet::_duplicate (p.ptr ());
+ this->ptr_ = ::CORBA_PollableSet::_duplicate (p.ptr ());
}
return *this;
}
ACE_INLINE
-CORBA_PollableSet_var::operator const CORBA_PollableSet_ptr &() const // cast
+CORBA_PollableSet_var::operator const ::CORBA_PollableSet_ptr &() const // cast
{
return this->ptr_;
}
ACE_INLINE
-CORBA_PollableSet_var::operator CORBA_PollableSet_ptr &() // cast
+CORBA_PollableSet_var::operator ::CORBA_PollableSet_ptr &() // cast
{
return this->ptr_;
}
-ACE_INLINE CORBA_PollableSet_ptr
+ACE_INLINE ::CORBA_PollableSet_ptr
CORBA_PollableSet_var::operator-> (void) const
{
return this->ptr_;
}
-ACE_INLINE CORBA_PollableSet_ptr
+ACE_INLINE ::CORBA_PollableSet_ptr
CORBA_PollableSet_var::in (void) const
{
return this->ptr_;
}
-ACE_INLINE CORBA_PollableSet_ptr &
+ACE_INLINE ::CORBA_PollableSet_ptr &
CORBA_PollableSet_var::inout (void)
{
return this->ptr_;
}
-ACE_INLINE CORBA_PollableSet_ptr &
+ACE_INLINE ::CORBA_PollableSet_ptr &
CORBA_PollableSet_var::out (void)
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_PollableSet::_nil ();
+ this->ptr_ = ::CORBA_PollableSet::_nil ();
return this->ptr_;
}
-ACE_INLINE CORBA_PollableSet_ptr
+ACE_INLINE ::CORBA_PollableSet_ptr
CORBA_PollableSet_var::_retn (void)
{
// yield ownership of managed obj reference
- CORBA_PollableSet_ptr val = this->ptr_;
- this->ptr_ = CORBA_PollableSet::_nil ();
+ ::CORBA_PollableSet_ptr val = this->ptr_;
+ this->ptr_ = ::CORBA_PollableSet::_nil ();
return val;
}
+
+#endif /* end #if !defined */
+
+
+#if !defined (_CORBA_POLLABLESET___OUT_CI_)
+#define _CORBA_POLLABLESET___OUT_CI_
+
// *************************************************************
// Inline operations for class CORBA_PollableSet_out
// *************************************************************
@@ -507,7 +495,7 @@ ACE_INLINE
CORBA_PollableSet_out::CORBA_PollableSet_out (CORBA_PollableSet_ptr &p)
: ptr_ (p)
{
- this->ptr_ = CORBA_PollableSet::_nil ();
+ this->ptr_ = ::CORBA_PollableSet::_nil ();
}
ACE_INLINE
@@ -515,25 +503,25 @@ CORBA_PollableSet_out::CORBA_PollableSet_out (CORBA_PollableSet_var &p) // const
: ptr_ (p.out ())
{
CORBA::release (this->ptr_);
- this->ptr_ = CORBA_PollableSet::_nil ();
+ this->ptr_ = ::CORBA_PollableSet::_nil ();
}
ACE_INLINE
-CORBA_PollableSet_out::CORBA_PollableSet_out (const CORBA_PollableSet_out &p) // copy constructor
- : ptr_ (ACE_const_cast (CORBA_PollableSet_out&,p).ptr_)
+CORBA_PollableSet_out::CORBA_PollableSet_out (const ::CORBA_PollableSet_out &p) // copy constructor
+ : ptr_ (ACE_const_cast (CORBA_PollableSet_out &, p).ptr_)
{}
-ACE_INLINE CORBA_PollableSet_out &
-CORBA_PollableSet_out::operator= (const CORBA_PollableSet_out &p)
+ACE_INLINE ::CORBA_PollableSet_out &
+CORBA_PollableSet_out::operator= (const ::CORBA_PollableSet_out &p)
{
- this->ptr_ = ACE_const_cast (CORBA_PollableSet_out&,p).ptr_;
+ this->ptr_ = ACE_const_cast (CORBA_PollableSet_out&, p).ptr_;
return *this;
}
ACE_INLINE CORBA_PollableSet_out &
-CORBA_PollableSet_out::operator= (const CORBA_PollableSet_var &p)
+CORBA_PollableSet_out::operator= (const ::CORBA_PollableSet_var &p)
{
- this->ptr_ = CORBA_PollableSet::_duplicate (p.ptr ());
+ this->ptr_ = ::CORBA_PollableSet::_duplicate (p.ptr ());
return *this;
}
@@ -545,23 +533,26 @@ CORBA_PollableSet_out::operator= (CORBA_PollableSet_ptr p)
}
ACE_INLINE
-CORBA_PollableSet_out::operator CORBA_PollableSet_ptr &() // cast
+CORBA_PollableSet_out::operator ::CORBA_PollableSet_ptr &() // cast
{
return this->ptr_;
}
-ACE_INLINE CORBA_PollableSet_ptr &
+ACE_INLINE ::CORBA_PollableSet_ptr &
CORBA_PollableSet_out::ptr (void) // ptr
{
return this->ptr_;
}
-ACE_INLINE CORBA_PollableSet_ptr
+ACE_INLINE ::CORBA_PollableSet_ptr
CORBA_PollableSet_out::operator-> (void)
{
return this->ptr_;
}
+
+#endif /* end #if !defined */
+
// *************************************************************
// Inline operations for exception CORBA_PollableSet::NoPossiblePollable
// *************************************************************
@@ -570,63 +561,13 @@ CORBA_PollableSet_out::operator-> (void)
// Inline operations for exception CORBA_PollableSet::UnknownPollable
// *************************************************************
-CORBA::Boolean TAO_Export
+ACE_INLINE CORBA::Boolean
operator<< (
TAO_OutputCDR &,
const CORBA_PollableSet_ptr
);
-CORBA::Boolean TAO_Export
+ACE_INLINE CORBA::Boolean
operator>> (
TAO_InputCDR &,
CORBA_PollableSet_ptr &
);
-
-CORBA::Boolean TAO_Export
-operator<< (
- TAO_OutputCDR &,
- const CORBA_Pollable_ptr
- );
-CORBA::Boolean TAO_Export
-operator>> (
- TAO_InputCDR &,
- CORBA_Pollable_ptr &
- );
-
-CORBA::Boolean TAO_Export
-operator<< (
- TAO_OutputCDR &,
- const CORBA_DIIPollable_ptr
- );
-CORBA::Boolean TAO_Export
-operator>> (
- TAO_InputCDR &,
- CORBA_DIIPollable_ptr &
- );
-
-ACE_INLINE CORBA::Boolean operator<< (TAO_OutputCDR &strm, const CORBA_PollableSet::NoPossiblePollable &_tao_aggregate)
-{
- // first marshal the repository ID
- if (strm << _tao_aggregate._id ())
- return 1;
- else
- return 0;
-}
-
-ACE_INLINE CORBA::Boolean operator>> (TAO_InputCDR &, CORBA_PollableSet::NoPossiblePollable &)
-{
- return 1;
-}
-
-ACE_INLINE CORBA::Boolean operator<< (TAO_OutputCDR &strm, const CORBA_PollableSet::UnknownPollable &_tao_aggregate)
-{
- // first marshal the repository ID
- if (strm << _tao_aggregate._id ())
- return 1;
- else
- return 0;
-}
-
-ACE_INLINE CORBA::Boolean operator>> (TAO_InputCDR &, CORBA_PollableSet::UnknownPollable &)
-{
- return 1;
-}