diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-06-20 06:07:59 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-06-20 06:07:59 +0000 |
commit | d438c23bfdd7a756a01dd94683bb40841b63344a (patch) | |
tree | 2d40c5969107d408f9c60168507704f3969986aa /TAO/tao/Argument.h | |
parent | 6867b37ce03d12198c98bb2914a481d5acc32f40 (diff) | |
download | ATCD-d438c23bfdd7a756a01dd94683bb40841b63344a.tar.gz |
ChangeLogTag: Mon Jun 19 12:11:09 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Argument.h')
-rw-r--r-- | TAO/tao/Argument.h | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/TAO/tao/Argument.h b/TAO/tao/Argument.h index cbaee13f83d..056ef2596b7 100644 --- a/TAO/tao/Argument.h +++ b/TAO/tao/Argument.h @@ -93,37 +93,45 @@ namespace TAO }; +#if TAO_HAS_INTERCEPTORS == 1 class TAO_Export InArgument : public Argument { public: -#if TAO_HAS_INTERCEPTORS == 1 virtual CORBA::ParameterMode mode (void) const; -#endif }; +#else + typedef Argument InArgument; +#endif +#if TAO_HAS_INTERCEPTORS == 1 class TAO_Export InoutArgument : public Argument { public: -#if TAO_HAS_INTERCEPTORS == 1 virtual CORBA::ParameterMode mode (void) const; -#endif }; +#else + typedef Argument InoutArgument; +#endif +#if TAO_HAS_INTERCEPTORS == 1 class TAO_Export OutArgument : public Argument { public: -#if TAO_HAS_INTERCEPTORS == 1 virtual CORBA::ParameterMode mode (void) const; -#endif }; +#else + typedef Argument OutArgument; +#endif +#if TAO_HAS_INTERCEPTORS == 1 class TAO_Export RetArgument : public Argument { public: -#if TAO_HAS_INTERCEPTORS == 1 virtual CORBA::ParameterMode mode (void) const; -#endif }; +#else + typedef Argument RetArgument; +#endif } TAO_END_VERSIONED_NAMESPACE_DECL |