summaryrefslogtreecommitdiff
path: root/TAO/tao/varout.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/varout.i')
-rw-r--r--TAO/tao/varout.i60
1 files changed, 0 insertions, 60 deletions
diff --git a/TAO/tao/varout.i b/TAO/tao/varout.i
deleted file mode 100644
index 6af71350cfd..00000000000
--- a/TAO/tao/varout.i
+++ /dev/null
@@ -1,60 +0,0 @@
-//
-// $Id$
-//
-
-template<class T, class T_var> ACE_INLINE
-TAO_Object_Field_T<T,T_var>::TAO_Object_Field_T (void)
- : ptr_ (0)
-{
-}
-
-template<class T, class T_var> ACE_INLINE
-TAO_Object_Field_T<T,T_var>::TAO_Object_Field_T (T* object)
- : ptr_ (object)
-{
-}
-
-template<class T, class T_var> ACE_INLINE T*
-TAO_Object_Field_T<T,T_var>::ptr (void) const
-{
- return this->ptr_;
-}
-
-template<class T, class T_var> ACE_INLINE
-TAO_Object_Field_T<T,T_var>::operator T* const &() const
-{
- return this->ptr_;
-}
-
-template<class T, class T_var> ACE_INLINE
-TAO_Object_Field_T<T,T_var>::operator T* &()
-{
- return this->ptr_;
-}
-
-template<class T, class T_var> ACE_INLINE T*
-TAO_Object_Field_T<T,T_var>::operator-> (void) const
-{
- return this->ptr_;
-}
-
-template<class T, class T_var> ACE_INLINE T*
-TAO_Object_Field_T<T,T_var>::in (void) const
-{
- return this->ptr_;
-}
-
-template<class T, class T_var> ACE_INLINE T* &
-TAO_Object_Field_T<T,T_var>::inout (void)
-{
- return this->ptr_;
-}
-
-template<class T, class T_var> ACE_INLINE T*
-TAO_Object_Field_T<T,T_var>::_retn (void)
-{
- // yield ownership of managed obj reference
- T* val = this->ptr_;
- this->ptr_ = 0;
- return val;
-}