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