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

void Impala::Application::Videolympics::RawImageDataset::RequestNext ( int  inc  )  [inline]

Definition at line 38 of file RawImageDataset.h.

References mCurNr, and NrImages().

00039     {
00040         int newNr = mCurNr + inc;
00041         if (newNr < 0)
00042             newNr = 0;
00043         if (newNr >= NrImages())
00044             newNr = NrImages() - 1;
00045         if (newNr != mCurNr)
00046         {
00047             mCurNr = newNr;
00048         }
00049     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:55:09 2010 for ImpalaSrc by  doxygen 1.5.1