Definition at line 64 of file VideoSetRepositoryInFile.h. References Impala::Core::Database::RawDataSet::GetAsPath(), Impala::Persistency::Locator::GetDataSet(), Impala::Persistency::RepositoryInFileSystem::GetFile(), Impala::Persistency::File::GetWriteBuffer(), Impala::Core::Database::RawDataSet::NrFiles(), and RepFS(). 00065 { 00066 File f = RepFS().GetFile(loc, "VideoData", loc.GetDataSet(), true, 00067 false); 00068 00069 Util::IOBuffer* ioBuf = f.GetWriteBuffer(); 00070 if (! ioBuf) 00071 return; 00072 for (int i=0 ; i<vidSet->NrFiles() ; i++) 00073 ioBuf->IOBuffer::Puts("\"" + vidSet->GetAsPath(i) + "\""); 00074 delete ioBuf; 00075 }
Here is the call graph for this function:
|