// This may look like C, but it's really -*- C++ -*- //============================================================================= /** * @file UB_String_Arguments.h * * $Id$ * * @authors Jeff Parsons and Carlos O'Ryan */ //============================================================================= #ifndef TAO_UB_STRING_ARGUMENTS_H #define TAO_UB_STRING_ARGUMENTS_H #include /**/ "ace/pre.h" #include "tao/UB_String_Argument_T.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "tao/Arg_Traits_T.h" namespace TAO { /** * * @brief Specializatons for unbounded (w)strings. * */ template<> class TAO_Export Arg_Traits : public UB_String_Arg_Traits_T { }; template<> class TAO_Export Arg_Traits : public UB_String_Arg_Traits_T { }; } #include /**/ "ace/post.h" #endif /* TAO_UB_STRING_ARGUMENTS_H */