Public Member Functions | |
~gAutoStringArray () | |
char * | Store (char const *s) |
Private Attributes | |
std::vector< char * > | strings |
Definition at line 499 of file gArmagetron.cpp.
gAutoStringArray::~gAutoStringArray | ( | ) | [inline] |
Definition at line 502 of file gArmagetron.cpp.
00502 : 00503 ~gAutoStringArray() 00504 { 00505 for ( std::vector< char * >::iterator i = strings.begin(); i != strings.end(); ++i ) 00506 { 00507 free( *i ); 00508 } }
char* gAutoStringArray::Store | ( | char const * | s | ) | [inline] |
Definition at line 510 of file gArmagetron.cpp.
References strdup, and strings.
Referenced by sg_PutEnv().
std::vector< char * > gAutoStringArray::strings [private] |