Inheritance diagram for NLSOUND::CCancelLoadWavFile:
Public Member Functions | |
virtual bool | callback (const IRunnable *prunnable) const=0 |
CCancelLoadWavFile (const std::string &filename) | |
Private Member Functions | |
bool | callback (const NLMISC::IRunnable *prunnable) const |
Private Attributes | |
std::string | _Filename |
|
Definition at line 86 of file async_file_manager_sound.cpp.
00087 : _Filename (filename) 00088 {} |
|
Referenced by NLMISC::CAsyncFileManager::cancelLoadTask(). |
|
Definition at line 73 of file async_file_manager_sound.cpp. References NLSOUND::CAsyncFileManagerSound::CLoadWavFile::_Filename.
00074 { 00075 const CAsyncFileManagerSound::CLoadWavFile *pLWF = dynamic_cast<const CAsyncFileManagerSound::CLoadWavFile*>(prunnable); 00076 00077 if (pLWF != NULL) 00078 { 00079 if (pLWF->_Filename == _Filename) 00080 return true; 00081 } 00082 return false; 00083 } |
|
Definition at line 71 of file async_file_manager_sound.cpp. |