#include <String_Traits_Base_T.h>
Public Types | |
| typedef char | char_type |
| typedef TAO::String_var< char_type > | string_var |
| typedef TAO::String_out< char_type > | string_out |
| typedef TAO::String_Manager_T< char_type > | string_mgr |
| typedef ACE_InputCDR::to_string | to_type |
| typedef ACE_OutputCDR::from_string | from_type |
Static Public Member Functions | |
| char_type * | default_initializer () |
| char_type * | duplicate (char_type const *s) |
| void | release (char_type *s) |
| char_type * | allocate (CORBA::ULong len) |
|
|
Definition at line 41 of file String_Traits_Base_T.h. Referenced by allocate(), default_initializer(), duplicate(), and release(). |
|
|
Definition at line 46 of file String_Traits_Base_T.h. |
|
|
Definition at line 44 of file String_Traits_Base_T.h. |
|
|
Definition at line 43 of file String_Traits_Base_T.h. |
|
|
Definition at line 42 of file String_Traits_Base_T.h. |
|
|
Definition at line 45 of file String_Traits_Base_T.h. |
|
|
Definition at line 63 of file String_Traits_Base_T.h. References char_type, and CORBA::string_alloc().
00064 {
00065 return CORBA::string_alloc (len);
00066 }
|
|
|
Definition at line 48 of file String_Traits_Base_T.h. References char_type, and CORBA::string_dup().
00049 {
00050 return CORBA::string_dup("");
00051 }
|
|
|
Definition at line 53 of file String_Traits_Base_T.h. References char_type, and CORBA::string_dup().
00054 {
00055 return CORBA::string_dup(s);
00056 }
|
|
|
Definition at line 58 of file String_Traits_Base_T.h. References char_type, and CORBA::string_free().
00059 {
00060 CORBA::string_free(s);
00061 }
|
1.3.6