Definition at line 274 of file mainRepository.cpp. References Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetBool(), GetImageSet(), Impala::CmdOptions::GetInstance(), and ILOG_VAR. Referenced by mainRepository(). 00275 { 00276 ILOG_VAR(Impala.Application.Repository.DoCopyImageSet); 00277 CmdOptions& options = CmdOptions::GetInstance(); 00278 00279 String locString1 = options.GetArg(1); 00280 String setName = options.GetArg(2); 00281 String locString2 = options.GetArg(3); 00282 ImageSet* imSet = GetImageSet(options, true); 00283 ImageSetLocator setLoc2(locString2, setName); 00284 if (options.GetBool("sync")) 00285 ImageSetRepository().Sync(setLoc2, imSet); 00286 else 00287 ImageSetRepository().Add(setLoc2, imSet); 00288 delete imSet; 00289 }
Here is the call graph for this function: ![]()
|