Definition at line 2128 of file mainRepository.cpp. References GetFoldLocator(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), GetRawDataSet(), and ILOG_VAR. Referenced by mainRepository(). 02129 { 02130 ILOG_VAR(Impala.Application.Repository.DoDumpFold); 02131 CmdOptions& options = CmdOptions::GetInstance(); 02132 02133 FoldLocator loc = GetFoldLocator(options, true); 02134 QuidTable* tab = FoldRepository().Get(loc); 02135 if (tab == 0) 02136 return; 02137 RawDataSet* dataSet = GetRawDataSet(options, false); 02138 tab->Dump(dataSet, options.GetInt("start"), options.GetInt("end")); 02139 delete tab; 02140 if (dataSet) 02141 delete dataSet; 02142 }
Here is the call graph for this function: ![]()
|