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

int Impala::Visualization::DirImViewer::ClampViewIdx ( int &  idx  )  [inline]

Definition at line 130 of file DirImViewer.h.

References mViews.

Referenced by ClearViews(), FindIndexBwd(), and FindIndexFwd().

00131     {
00132         if (idx < 0)
00133             idx = 0;
00134         if (idx > mViews.size()-1)
00135             idx = mViews.size()-1;
00136         return idx;
00137     }


Generated on Thu Jan 13 09:24:37 2011 for ImpalaSrc by  doxygen 1.5.1