Public Member Functions | Static Public Member Functions

TAO_AnyTypeCode_Adapter_Impl Class Reference

#include <AnyTypeCode_Adapter_Impl.h>

Inheritance diagram for TAO_AnyTypeCode_Adapter_Impl:
Inheritance graph
[legend]
Collaboration diagram for TAO_AnyTypeCode_Adapter_Impl:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual
ANYTYPECODE__EXCEPTION_LIST
void 
insert_into_any (CORBA::Any *any, CORBA::Char const *mychar)
virtual void insert_into_any (CORBA::Any *any, CORBA::WChar const *mywchar)
virtual void insert_into_any (CORBA::Any *any, const std::string &value)
virtual void insert_into_any (CORBA::Any *any, CORBA::Long value)
virtual void insert_into_any (CORBA::Any *any, CORBA::Short value)
virtual void insert_into_any (CORBA::Any *any, CORBA::UShort value)
virtual void insert_into_any (CORBA::Any *any, CORBA::Float value)
virtual void insert_into_any (CORBA::Any *any, CORBA::Double value)
virtual void insert_into_any (CORBA::Any *any, CORBA::LongLong value)
virtual void insert_into_any (CORBA::Any *any, CORBA::ULongLong value)
virtual void insert_into_any (CORBA::Any *any, CORBA::LongDouble value)
virtual void insert_into_any (CORBA::Any *any, CORBA::Policy_ptr policy)
virtual void insert_into_any (CORBA::Any *any, CORBA::Policy_ptr *policy)
virtual void insert_into_any (CORBA::Any *any, CORBA::ULong value)
virtual void insert_into_any (CORBA::Any *any, ACE_OutputCDR::from_wchar value)
virtual void insert_into_any (CORBA::Any *any, ACE_OutputCDR::from_char value)
virtual void insert_into_any (CORBA::Any *any, ACE_OutputCDR::from_octet value)
virtual void insert_into_any (CORBA::Any *any, ACE_OutputCDR::from_boolean value)

Static Public Member Functions

static int Initializer (void)

Detailed Description

Definition at line 33 of file AnyTypeCode_Adapter_Impl.h.


Member Function Documentation

int TAO_AnyTypeCode_Adapter_Impl::Initializer ( void   )  [static]

Definition at line 179 of file AnyTypeCode_Adapter_Impl.cpp.

{
  return ACE_Service_Config::process_directive (
        ace_svc_desc_TAO_AnyTypeCode_Adapter_Impl);
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
ACE_OutputCDR::from_boolean  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 173 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
ACE_OutputCDR::from_octet  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 167 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
ACE_OutputCDR::from_char  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 161 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
ACE_OutputCDR::from_wchar  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 155 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::ULong  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 149 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::Policy_ptr policy 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 143 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= policy;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::Policy_ptr  policy 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 137 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= policy;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::LongDouble  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 131 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::ULongLong  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 125 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::LongLong  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 119 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::Double  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 113 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::Float  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 107 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::UShort  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 101 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::Short  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 95 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::Long  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 89 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value;
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
const std::string &  value 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 83 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= value.c_str ();
}

void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::WChar const *  mywchar 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 77 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= mywchar;
}

STANDARD_EXCEPTION_LIST void TAO_AnyTypeCode_Adapter_Impl::insert_into_any ( CORBA::Any any,
CORBA::Char const *  mychar 
) [virtual]

Implements TAO_AnyTypeCode_Adapter.

Definition at line 71 of file AnyTypeCode_Adapter_Impl.cpp.

{
  (*any) <<= mychar;
}


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines