/usr/include/tao/Special_Basic_Arguments.h is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | // -*- C++ -*-
//=============================================================================
/**
* @file Special_Basic_Arguments.h
*
* $Id: Special_Basic_Arguments.h 90386 2010-06-02 13:52:08Z vzykov $
*
* @author Jeff Parsons
* @author Carlos O'Ryan
*/
//=============================================================================
#ifndef TAO_SPECIAL_BASIC_ARGUMENTS_H
#define TAO_SPECIAL_BASIC_ARGUMENTS_H
#include /**/ "ace/pre.h"
#include "ace/CDR_Stream.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Special_Basic_Argument_T.h"
#include "tao/Arg_Traits_T.h"
#include "tao/Any_Insert_Policy_T.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
/**
*
* @brief Specializations for (w)char, octet and boolean.
*
*/
template<>
class TAO_Export Arg_Traits<ACE_InputCDR::to_char>
: public Special_Basic_Arg_Traits_T<CORBA::Char,
ACE_InputCDR::to_char,
ACE_OutputCDR::from_char,
TAO::Any_Insert_Policy_AnyTypeCode_Adapter>
{
};
template<>
class TAO_Export Arg_Traits<ACE_InputCDR::to_wchar>
: public Special_Basic_Arg_Traits_T<CORBA::WChar,
ACE_InputCDR::to_wchar,
ACE_OutputCDR::from_wchar,
TAO::Any_Insert_Policy_AnyTypeCode_Adapter>
{
};
template<>
class TAO_Export Arg_Traits<ACE_InputCDR::to_octet>
: public Special_Basic_Arg_Traits_T<CORBA::Octet,
ACE_InputCDR::to_octet,
ACE_OutputCDR::from_octet,
TAO::Any_Insert_Policy_AnyTypeCode_Adapter>
{
};
template<>
class TAO_Export Arg_Traits<ACE_InputCDR::to_boolean>
: public Special_Basic_Arg_Traits_T<CORBA::Boolean,
ACE_InputCDR::to_boolean,
ACE_OutputCDR::from_boolean,
TAO::Any_Insert_Policy_AnyTypeCode_Adapter>
{
};
}
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/"ace/post.h"
#endif /* TAO_SPECIAL_BASIC_ARGUMENTS_H */
|