diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-05-04 23:16:32 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-05-04 23:16:32 +0000 |
commit | 643462b18154a6e7581674e5c1114e4a38a1348f (patch) | |
tree | 3e0c4010b8bba89d5b0b2b2a51db7b284a45038a /TAO/tao/Any_Basic_Impl_T.h | |
parent | 09c701aa0ec69b620bdb9db08c940430ff37c453 (diff) | |
download | ATCD-643462b18154a6e7581674e5c1114e4a38a1348f.tar.gz |
ChangeLogTag: Sun May 4 18:06:59 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Any_Basic_Impl_T.h')
-rw-r--r-- | TAO/tao/Any_Basic_Impl_T.h | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/TAO/tao/Any_Basic_Impl_T.h b/TAO/tao/Any_Basic_Impl_T.h new file mode 100644 index 00000000000..f7dedc15548 --- /dev/null +++ b/TAO/tao/Any_Basic_Impl_T.h @@ -0,0 +1,82 @@ +// This may look like C, but it's really -*- C++ -*- + +//============================================================================= +/** + * @file Any_Basic_Impl_T.h + * + * $Id$ + * + * @authors Carlos O'Ryan and Jeff Parsons + */ +//============================================================================= + + +#ifndef TAO_ANY_BASIC_IMPL_T_H +#define TAO_ANY_BASIC_IMPL_T_H + +#include "ace/pre.h" + +#include "tao/Any.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +namespace TAO +{ + /** + * @class Any_Basic_Impl_T + * + * @brief Template Any class for basic types. + * + * Used for all basic IDL types except bounded (w)strings. + */ + template<typename T> + class Any_Basic_Impl_T : public Any_Impl + { + public: + Any_Basic_Impl_T (CORBA::TypeCode_ptr, + const T & val); + virtual ~Any_Basic_Impl_T (void); + + static void insert (CORBA::Any &, + CORBA::TypeCode_ptr, + const T &); + static CORBA::Boolean extract (const CORBA::Any &, + CORBA::TypeCode_ptr, + T &); + + virtual CORBA::Boolean marshal_value (TAO_OutputCDR &); + CORBA::Boolean demarshal_value (TAO_InputCDR &); + virtual void _tao_decode (TAO_InputCDR & + ACE_ENV_ARG_DECL_WITH_DEFAULTS); + + virtual const void *value (void) const; + static Any_Basic_Impl_T<T> *create_empty (CORBA::TypeCode_ptr); + + private: + T value_; + }; +}; + +#if defined (__ACE_INLINE__) +# include "tao/Any_Basic_Impl_T.inl" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +#endif /* __ACE_INLINE__ */ + +#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) +#include "tao/Any_Basic_Impl_T.cpp" +#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ + +#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) +#pragma implementation ("Any_Basic_Impl_T.cpp") +#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ + +#include "ace/post.h" + +#endif /* TAO_ANY_BASIC_IMPL_T_H */ + |