Definition at line 428 of file mainRepository.cpp. References Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), GetVideoSet(), and ILOG_VAR. Referenced by mainRepository(). 00429 { 00430 ILOG_VAR(Impala.Application.Repository.DoCopyVideoSet); 00431 CmdOptions& options = CmdOptions::GetInstance(); 00432 00433 String locString1 = options.GetArg(1); 00434 String setName = options.GetArg(2); 00435 String locString2 = options.GetArg(3); 00436 VideoSet* vidSet = GetVideoSet(options, true); 00437 Locator setLoc2(locString2, setName); 00438 if (options.GetBool("sync")) 00439 VideoSetRepository().Sync(setLoc2, vidSet); 00440 else 00441 VideoSetRepository().Add(setLoc2, vidSet); 00442 delete vidSet; 00443 }
Here is the call graph for this function: ![]()
|