00001 #ifndef STRINGSHOLDER_H 00002 #define STRINGSHOLDER_H 00003 00004 #include <vector> 00005 00006 using namespace std; 00007 00011 struct StringsHolder 00012 { 00018 char *add(const char *text); 00019 00024 void delete_strings(); 00025 00026 private: 00027 00031 vector<char*> strings; 00032 }; 00033 00034 #endif