| 249 | } |
| 250 | |
| 251 | ODBlock::~ODBlock() |
| 252 | { |
| 253 | //free the contents |
| 254 | ODBlockList::Iterator i; |
| 255 | for (i = subBlocks.begin(); i != subBlocks.end(); ++i) |
| 256 | delete (*i); |
| 257 | //free the pointers |
| 258 | subBlocks.clear(); |
| 259 | |
| 260 | //delete [] identifier; |
| 261 | identifier[0] = '\0'; |
| 262 | identSize = 0; |
| 263 | } |
| 264 | |
| 265 | |
| 266 | bool ODBlock::saveScript(SampleFramework::File * fp,bool bQuote) |