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

Impala::Core::ImageSet::Archive::Archive ( Reporter reporter,
CmdOptions options 
) [inline]

Definition at line 26 of file Archive.h.

References Impala::atol(), Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetNrArg(), mMaxSize, mMinSize, mNrBigIm, mNrBlackIm, mNrSmallIm, mReporter, mSplit, and Impala::Core::ImageSet::Reporter::SetReportArray().

00027     {
00028         mReporter = reporter;
00029         mReporter->SetReportArray(false); // we will cause a "memory leak"
00030         mSplit = false;
00031         if ((options.GetNrArg() > 2) && (options.GetArg(2) == "split"))
00032             mSplit = true;
00033         mMaxSize = -1;
00034         if (options.GetNrArg() > 3)
00035             mMaxSize = atol(options.GetArg(3));
00036         mMinSize = 64;
00037         if (options.GetNrArg() > 4)
00038             mMinSize = atol(options.GetArg(4));
00039         mNrBlackIm = 0;
00040         mNrSmallIm = 0;
00041         mNrBigIm = 0;
00042     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:56 2011 for ImpalaSrc by  doxygen 1.5.1