#include <TridSketchList.h>
Public Member Functions | |
| TridSketchListItr (TridSketchList &list) | |
| ~TridSketchListItr () | |
| TridSketch * | First () |
| TridSketch * | Next () |
| void | Reset () |
Private Attributes | |
| std::map< unsigned int, TridSketch * >::iterator | fIt |
| std::map< unsigned int, TridSketch * > * | fMap |
|
|
Definition at line 64 of file TridSketchList.h. References fIt, TridSketchList::fMap, and fMap.
|
|
|
Definition at line 65 of file TridSketchList.h. 00065 {};
|
|
|
Definition at line 83 of file TridSketchList.cxx. References fIt, fMap, and Next().
|
|
|
Definition at line 89 of file TridSketchList.cxx. Referenced by TridGLFrame::DrawObjects(), TridFlatGLFrame::DrawObjects(), First(), TridUVPage::ModifySketches(), TridPageSlice::ModifySketches(), TridPageDetector::ModifySketches(), TridPage::ModifySketches(), and TridPage::SetupFrame(). 00090 {
00091 TridSketch* sk = NULL;
00092 if(fIt == fMap->end()) return NULL;
00093 sk = fIt->second;
00094 fIt++;
00095 return sk;
00096 }
|
|
|
Definition at line 69 of file TridSketchList.h. Referenced by TridGLFrame::DrawObjects(), and TridFlatGLFrame::DrawObjects().
|
|
|
Definition at line 72 of file TridSketchList.h. Referenced by First(), Next(), Reset(), and TridSketchListItr(). |
|
|
Definition at line 73 of file TridSketchList.h. Referenced by First(), Next(), Reset(), and TridSketchListItr(). |
1.3.9.1