summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/PortableServer/Any_SArg_Traits.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tao/PortableServer/Any_SArg_Traits.h')
-rw-r--r--trunk/TAO/tao/PortableServer/Any_SArg_Traits.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/trunk/TAO/tao/PortableServer/Any_SArg_Traits.h b/trunk/TAO/tao/PortableServer/Any_SArg_Traits.h
new file mode 100644
index 00000000000..94980dc0c0b
--- /dev/null
+++ b/trunk/TAO/tao/PortableServer/Any_SArg_Traits.h
@@ -0,0 +1,51 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Any_SArg_Traits.h
+ *
+ * $Id$
+ *
+ * @author Jeff Parsons
+ * @author Ossama Othman
+ */
+//=============================================================================
+
+
+#ifndef TAO_ANY_SARG_TRAITS_H
+#define TAO_ANY_SARG_TRAITS_H
+
+#include /**/ "ace/pre.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/PortableServer/Var_Size_SArgument_T.h"
+#include "tao/PortableServer/portableserver_export.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace CORBA
+{
+ class Any;
+}
+
+namespace TAO
+{
+ template<>
+ class TAO_PortableServer_Export SArg_Traits<CORBA::Any>
+ : public
+ Var_Size_SArg_Traits_T<
+ CORBA::Any,
+ TAO::Any_Insert_Policy_Stream <CORBA::Any>
+ >
+ {
+ };
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_ANY_ARG_TRAITS_H */