summaryrefslogtreecommitdiff
path: root/TAO/tao/Any_Array_Impl_T.h
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-03 19:18:50 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-03 19:18:50 +0000
commitedd95011ef74eff3f868900dff34a6d47f4f4572 (patch)
treec6f1d3ca383e61236b47b10d98c649a639b3d226 /TAO/tao/Any_Array_Impl_T.h
parent5835007e35cf5a4939302a83139f57a2bebe71e8 (diff)
downloadATCD-edd95011ef74eff3f868900dff34a6d47f4f4572.tar.gz
ChangeLogTag: Sat May 3 14:00:48 2003 Jeff Parsons <j.parsons@vanderbilt.edu>subset
Diffstat (limited to 'TAO/tao/Any_Array_Impl_T.h')
-rw-r--r--TAO/tao/Any_Array_Impl_T.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/TAO/tao/Any_Array_Impl_T.h b/TAO/tao/Any_Array_Impl_T.h
new file mode 100644
index 00000000000..47fee8784ad
--- /dev/null
+++ b/TAO/tao/Any_Array_Impl_T.h
@@ -0,0 +1,85 @@
+// This may look like C, but it's really -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Any_Array_Impl_T.h
+ *
+ * $Id$
+ *
+ * @authors Carlos O'Ryan and Jeff Parsons
+ */
+//=============================================================================
+
+
+#ifndef TAO_ANY_ARRAY_IMPL_T_H
+#define TAO_ANY_ARRAY_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_Array_Impl_T
+ *
+ * @brief Template Any class for array types.
+ *
+ * Used for arrays
+ */
+ template<typename T_slice, typename T_forany>
+ class Any_Array_Impl_T : public Any_Impl
+ {
+ public:
+ Any_Array_Impl_T (_tao_destructor destructor,
+ CORBA::TypeCode_ptr,
+ T_slice * const);
+ virtual ~Any_Array_Impl_T (void);
+
+ static void insert (CORBA::Any &,
+ _tao_destructor destructor,
+ CORBA::TypeCode_ptr,
+ T_slice * const);
+ static CORBA::Boolean extract (const CORBA::Any &,
+ _tao_destructor,
+ CORBA::TypeCode_ptr,
+ const T_slice *&);
+
+ 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;
+ virtual void free_value (void);
+
+ private:
+ T_slice * value_;
+ };
+};
+
+#if defined (__ACE_INLINE__)
+# include "tao/Any_Array_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_Array_Impl_T.cpp"
+#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
+
+#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
+#pragma implementation ("Any_Array_Impl_T.cpp")
+#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
+
+#include "ace/post.h"
+
+#endif /* TAO_ANY_ARRAY_IMPL_T_H */
+