ACE
6.1.0
|
Simple class to automatically de-allocate strings. More...
#include <SString.h>
Public Member Functions | |
ACE_Auto_String_Free (char *p=0) | |
ACE_Auto_String_Free (ACE_Auto_String_Free &rhs) | |
ACE_Auto_String_Free & | operator= (ACE_Auto_String_Free &rhs) |
~ACE_Auto_String_Free (void) | |
char * | operator* () const |
char | operator[] (size_t i) const |
char * | get (void) const |
char * | release (void) |
void | reset (char *p=0) |
Private Attributes | |
char * | p_ |
Simple class to automatically de-allocate strings.
Keeps a pointer to a string and deallocates it (using <ACE_OS::free>) on its destructor. If you need to delete using "delete[]" the ACE_Auto_Array_Ptr<char> is your choice. The class plays the same role as auto_ptr<>
ACE_Auto_String_Free::ACE_Auto_String_Free | ( | char * | p = 0 | ) | [inline, explicit] |
ACE_Auto_String_Free::ACE_Auto_String_Free | ( | ACE_Auto_String_Free & | rhs | ) | [inline] |
ACE_Auto_String_Free::~ACE_Auto_String_Free | ( | void | ) | [inline] |
char * ACE_Auto_String_Free::get | ( | void | ) | const [inline] |
char * ACE_Auto_String_Free::operator* | ( | void | ) | const [inline] |
ACE_Auto_String_Free & ACE_Auto_String_Free::operator= | ( | ACE_Auto_String_Free & | rhs | ) | [inline] |
char ACE_Auto_String_Free::operator[] | ( | size_t | i | ) | const [inline] |
char * ACE_Auto_String_Free::release | ( | void | ) | [inline] |
void ACE_Auto_String_Free::reset | ( | char * | p = 0 | ) | [inline] |
char* ACE_Auto_String_Free::p_ [private] |