diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
commit | 8008dd09ccf88d4edef237a184a698cac42f2952 (patch) | |
tree | da50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/PortableServer/Basic_SArguments.h | |
parent | 13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff) | |
download | ATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz |
Repo restructuring
Diffstat (limited to 'TAO/tao/PortableServer/Basic_SArguments.h')
-rw-r--r-- | TAO/tao/PortableServer/Basic_SArguments.h | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/TAO/tao/PortableServer/Basic_SArguments.h b/TAO/tao/PortableServer/Basic_SArguments.h deleted file mode 100644 index 433002d391f..00000000000 --- a/TAO/tao/PortableServer/Basic_SArguments.h +++ /dev/null @@ -1,114 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file Basic_SArguments.h - * - * $Id$ - * - * @authors Jeff Parsons and Carlos O'Ryan - */ -//============================================================================= - - -#ifndef TAO_BASIC_SARGUMENTS_H -#define TAO_BASIC_SARGUMENTS_H - -#include /**/ "ace/pre.h" - -#include "tao/PortableServer/portableserver_export.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "tao/PortableServer/Basic_SArgument_T.h" -#include "tao/PortableServer/SArg_Traits_T.h" - -TAO_BEGIN_VERSIONED_NAMESPACE_DECL - -namespace TAO -{ - /** - * - * @brief Specialization for void return type. - * - */ - template<> - class TAO_PortableServer_Export SArg_Traits<void> - { - public: - - typedef void ret_type; - typedef RetArgument ret_val; - - }; - - /** - * - * @brief Specializations for basic skeleton arg types, - * except (w)char/boolean/octet. - * - */ - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::Short> - : public Basic_SArg_Traits_T<CORBA::Short, TAO::Any_Insert_Policy_Stream <CORBA::Short> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::Long> - : public Basic_SArg_Traits_T<CORBA::Long, TAO::Any_Insert_Policy_Stream <CORBA::Long> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::UShort> - : public Basic_SArg_Traits_T<CORBA::UShort, TAO::Any_Insert_Policy_Stream <CORBA::UShort> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::ULong> - : public Basic_SArg_Traits_T<CORBA::ULong, TAO::Any_Insert_Policy_Stream <CORBA::ULong> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::Float> - : public Basic_SArg_Traits_T<CORBA::Float, TAO::Any_Insert_Policy_Stream <CORBA::Float> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::Double> - : public Basic_SArg_Traits_T<CORBA::Double, TAO::Any_Insert_Policy_Stream <CORBA::Double> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::LongLong> - : public Basic_SArg_Traits_T<CORBA::LongLong, TAO::Any_Insert_Policy_Stream <CORBA::LongLong> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::ULongLong> - : public Basic_SArg_Traits_T<CORBA::ULongLong, TAO::Any_Insert_Policy_Stream <CORBA::ULongLong> > - { - }; - - template<> - class TAO_PortableServer_Export SArg_Traits<CORBA::LongDouble> - : public Basic_SArg_Traits_T<CORBA::LongDouble, TAO::Any_Insert_Policy_Stream <CORBA::LongDouble> > - { - }; - -} - -TAO_END_VERSIONED_NAMESPACE_DECL - -#include /**/ "ace/post.h" - -#endif /* TAO_BASIC_SARGUMENTS_H */ |