summaryrefslogtreecommitdiff
path: root/TAO/tao/Seq_Var_T.inl
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-11-02 11:03:27 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-11-02 11:03:27 +0000
commitd30481a515e68817ee812e6527f0e4afeb21651e (patch)
tree7b729be96bfa676f133f562057cf68f0b4b9ca5e /TAO/tao/Seq_Var_T.inl
parent1e8a1cead48e985129cbfc3ad2f0935a146b037e (diff)
downloadATCD-d30481a515e68817ee812e6527f0e4afeb21651e.tar.gz
ChangeLogTag:Tue Nov 1 14:49:40 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Seq_Var_T.inl')
-rw-r--r--TAO/tao/Seq_Var_T.inl31
1 files changed, 20 insertions, 11 deletions
diff --git a/TAO/tao/Seq_Var_T.inl b/TAO/tao/Seq_Var_T.inl
index b625dac9a6e..93d43fd480e 100644
--- a/TAO/tao/Seq_Var_T.inl
+++ b/TAO/tao/Seq_Var_T.inl
@@ -1,4 +1,8 @@
-//$Id$
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template<typename T, typename T_elem>
ACE_INLINE
@@ -127,7 +131,7 @@ ACE_INLINE
TAO_FixedSeq_Var_T<T,T_elem>::TAO_FixedSeq_Var_T (const T & p)
{
ACE_NEW (this->ptr_,
- T (p));
+ T (p));
}
template<typename T, typename T_elem>
@@ -153,20 +157,22 @@ TAO_FixedSeq_Var_T<T,T_elem>::operator[] (CORBA::ULong index)
template<typename T, typename T_elem>
ACE_INLINE
TAO_VarSeq_Var_T<T,T_elem>::TAO_VarSeq_Var_T (void)
-{}
+{
+}
template<typename T, typename T_elem>
ACE_INLINE
TAO_VarSeq_Var_T<T,T_elem>::TAO_VarSeq_Var_T (T * p)
: TAO_Seq_Var_Base_T<T,T_elem> (p)
-{}
+{
+}
template<typename T, typename T_elem>
TAO_VarSeq_Var_T<T,T_elem>::TAO_VarSeq_Var_T (
- const TAO_VarSeq_Var_T<T,T_elem> & p
- )
+ const TAO_VarSeq_Var_T<T,T_elem> & p)
: TAO_Seq_Var_Base_T<T,T_elem> (p)
-{}
+{
+}
template<typename T, typename T_elem>
ACE_INLINE
@@ -205,14 +211,15 @@ template<typename T, typename T_elem>
ACE_INLINE
TAO_MngSeq_Var_T<T,T_elem>::TAO_MngSeq_Var_T (T * p)
: TAO_Seq_Var_Base_T<T,T_elem> (p)
-{}
+{
+}
template<typename T, typename T_elem>
TAO_MngSeq_Var_T<T,T_elem>::TAO_MngSeq_Var_T (
- const TAO_MngSeq_Var_T<T,T_elem> & p
- )
+ const TAO_MngSeq_Var_T<T,T_elem> & p)
: TAO_Seq_Var_Base_T<T,T_elem> (p)
-{}
+{
+}
template<typename T, typename T_elem>
ACE_INLINE
@@ -239,3 +246,5 @@ TAO_MngSeq_Var_T<T,T_elem>::operator[] (CORBA::ULong index)
{
return this->ptr_->operator[] (index);
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL