Пример #1
0
 FILE* Find(const tstring& fileName)
 {
     M_Files::const_iterator found = m_Files.find(fileName.c_str());
     if (found != m_Files.end())
     {
         return found->second;
     }
     else
     {
         return NULL;
     }
 }
Пример #2
0
 void Close(const tstring& fileName)
 {
     M_Files::iterator found = m_Files.find( fileName );
     if (found != m_Files.end())
     {
         fclose( found->second );
         m_Files.erase( found );
     }
     else
     {
         HELIUM_BREAK();
     }
 }