| 41 | #endif |
| 42 | |
| 43 | IterNode() : options(0), leafOffset(0), visitStage(kIter_BeforeVisit) |
| 44 | { |
| 45 | #if 0 // *** XMP_DebugBuild |
| 46 | _pathPtr = _leafPtr = 0; |
| 47 | #endif |
| 48 | }; |
| 49 | |
| 50 | IterNode ( XMP_OptionBits _options, const XMP_VarString& _fullPath, size_t _leafOffset ) |
| 51 | : options(_options), fullPath(_fullPath), leafOffset(_leafOffset), visitStage(kIter_BeforeVisit) |