/** Clears all memory associated with the AlgorithmManager * and with the Analysis & Instrument data services. */ void FrameworkManagerImpl::clear() { clearAlgorithms(); clearInstruments(); clearData(); clearPropertyManagers(); }
bool Infogrames::loadInst(const char *fileName) { _instruments = new Audio::Infogrames::Instruments; if (!_instruments->load(fileName)) { warning("Infogrames: Couldn't load instruments \"%s\"", fileName); clearInstruments(); return false; } return true; }
bool Infogrames::loadInstruments(const char *fileName) { clearSong(); clearInstruments(); return loadInst(fileName); }
Infogrames::~Infogrames() { clearSong(); clearInstruments(); }