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