Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

VideoSet* Impala::Application::Repository::GetVideoSet ( CmdOptions &  options,
bool  required,
bool  getSrcLoc = true 
)

Definition at line 133 of file mainRepository.cpp.

References Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetNrArg(), GetVideoSet(), ILOG_ERROR, and ILOG_VAR.

Referenced by Impala::Application::IDash::ScreenReconstruction::CheckLoad(), and Impala::Application::IDash::ScreenPlay::PlayFileEvent().

00134 {
00135     ILOG_VAR(Impala.Application.Repository.GetVideoSet);
00136 
00137     int nrArg = 2;
00138     if (!getSrcLoc)
00139         nrArg++;
00140     if (options.GetNrArg() < nrArg)
00141     {
00142         ILOG_ERROR("Need at least " << nrArg << " parameters");
00143     }
00144     int a = 1;
00145     String locString = options.GetArg(a++);
00146     String setName = options.GetArg(a++);
00147     if (!getSrcLoc)
00148         locString = options.GetArg(a++);
00149     return GetVideoSet(locString, setName, required);
00150 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:47:46 2010 for ImpalaSrc by  doxygen 1.5.1