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

Impala::Persistency::VideoSetsRepository::VideoSetsRepository (  )  [inline, private]

Definition at line 136 of file VideoSetsRepository.h.

References GetFromFileSystem(), GetFromMonetDB(), Impala::CmdOptions::GetInstance(), Impala::Persistency::Locator::GetProtocol(), ILOG_DEBUG, and ILOG_ERROR.

00137     {
00138         CmdOptions& options = CmdOptions::GetInstance();
00139         Locator loc("config", options);
00140         ILOG_DEBUG("ctor: loc = " << loc);
00141         String protocol = loc.GetProtocol();
00142         if ((protocol == "file") || (protocol == "dataServer"))
00143         {
00144             GetFromFileSystem(loc);
00145         }
00146         else if (protocol == "mapi")
00147         {
00148             GetFromMonetDB(loc);
00149         }
00150         else
00151         {
00152             ILOG_ERROR("Get: unknown protocol: " << protocol);
00153         }
00154     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:37:26 2010 for ImpalaSrc by  doxygen 1.5.1