summaryrefslogtreecommitdiff
path: root/TAO/tao/Var_Size_Argument_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Var_Size_Argument_T.h')
-rw-r--r--TAO/tao/Var_Size_Argument_T.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/Var_Size_Argument_T.h b/TAO/tao/Var_Size_Argument_T.h
index e0d34c7c442..6fa5ea16f3d 100644
--- a/TAO/tao/Var_Size_Argument_T.h
+++ b/TAO/tao/Var_Size_Argument_T.h
@@ -30,7 +30,7 @@ namespace TAO
*
*/
template<typename S>
- class In_Var_Size_Argument_T : public Const_Argument_T<S const &>
+ class In_Var_Size_Argument_T : public Argument
{
public:
In_Var_Size_Argument_T (S const & x);
@@ -39,7 +39,7 @@ namespace TAO
#if TAO_HAS_INTERCEPTORS == 1
virtual void interceptor_param (Dynamic::Parameter &);
#endif /* TAO_HAS_INTERCEPTORS == 1 */
- virtual S const & arg (void) const;
+ S const & arg (void) const;
private:
const S * x_;
@@ -52,7 +52,7 @@ namespace TAO
*
*/
template<typename S>
- class Inout_Var_Size_Argument_T : public Mutable_Argument_T<S &>
+ class Inout_Var_Size_Argument_T : public Argument
{
public:
Inout_Var_Size_Argument_T (S & x);
@@ -62,7 +62,7 @@ namespace TAO
#if TAO_HAS_INTERCEPTORS == 1
virtual void interceptor_param (Dynamic::Parameter &);
#endif /* TAO_HAS_INTERCEPTORS == 1 */
- virtual S & arg (void);
+ S & arg (void);
private:
S * x_;
@@ -75,7 +75,7 @@ namespace TAO
*
*/
template<typename S, typename S_out>
- class Out_Var_Size_Argument_T : public Mutable_Argument_T<S *&>
+ class Out_Var_Size_Argument_T : public Argument
{
public:
Out_Var_Size_Argument_T (S_out x);
@@ -84,7 +84,7 @@ namespace TAO
#if TAO_HAS_INTERCEPTORS == 1
virtual void interceptor_param (Dynamic::Parameter &);
#endif /* TAO_HAS_INTERCEPTORS == 1 */
- virtual S *& arg (void);
+ S *& arg (void);
private:
S *& x_;
@@ -97,7 +97,7 @@ namespace TAO
*
*/
template<typename S, typename S_var>
- class Ret_Var_Size_Argument_T : public Mutable_Argument_T<S *&>
+ class Ret_Var_Size_Argument_T : public Argument
{
public:
Ret_Var_Size_Argument_T (void);
@@ -106,7 +106,7 @@ namespace TAO
#if TAO_HAS_INTERCEPTORS == 1
virtual void interceptor_result (CORBA::Any *);
#endif /* TAO_HAS_INTERCEPTORS == 1 */
- virtual S *& arg (void);
+ S *& arg (void);
S * excp (void);
S * retn (void);