00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file Any_Arg_Traits.h 00006 * 00007 * $Id: Any_Arg_Traits.h 90386 2010-06-02 13:52:08Z vzykov $ 00008 * 00009 * @author Jeff Parsons 00010 */ 00011 //============================================================================= 00012 00013 00014 #ifndef TAO_ANY_ARG_TRAITS_H 00015 #define TAO_ANY_ARG_TRAITS_H 00016 00017 #include /**/ "ace/pre.h" 00018 00019 #include "tao/AnyTypeCode/TAO_AnyTypeCode_Export.h" 00020 00021 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00022 # pragma once 00023 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00024 00025 #include "tao/AnyTypeCode/Any.h" 00026 #include "tao/Var_Size_Argument_T.h" 00027 #include "tao/Arg_Traits_T.h" 00028 #include "tao/Any_Insert_Policy_T.h" 00029 00030 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00031 00032 namespace TAO 00033 { 00034 template<> 00035 class TAO_AnyTypeCode_Export Arg_Traits<CORBA::Any> 00036 : public 00037 Var_Size_Arg_Traits_T< 00038 CORBA::Any, 00039 TAO::Any_Insert_Policy_Stream 00040 > 00041 { 00042 }; 00043 } 00044 00045 TAO_END_VERSIONED_NAMESPACE_DECL 00046 00047 #include /**/ "ace/post.h" 00048 00049 #endif /* TAO_ANY_ARG_TRAITS_H */