Definition at line 73 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(). 00074 { 00075 File f = RepFS().GetFile(loc, "VideoData", loc.GetDataSet(), true, 00076 false); 00077 00078 Util::IOBuffer* ioBuf = f.GetWriteBuffer(); 00079 if (! ioBuf) 00080 return; 00081 for (int i=0 ; i<vidSet->NrFiles() ; i++) 00082 ioBuf->IOBuffer::Puts("\"" + vidSet->GetAsPath(i) + "\""); 00083 delete ioBuf; 00084 }
Here is the call graph for this function: ![]()
|