/* * Name: OgreTextFindComponentEnumerator.h * Project: OgreKit * * Creation Date: Jun 05 2004 * Author: Isao Sonobe * Copyright: Copyright (c) 2003 Isao Sonobe, All rights reserved. * License: OgreKit License * * Encoding: UTF8 * Tabsize: 4 */ #import @class OgreTextFindBranch; @interface OgreTextFindComponentEnumerator : NSEnumerator { OgreTextFindBranch *_branch; unsigned *_indexes, _count; int _nextIndex; int _terminalIndex; BOOL _inSelection; } - (id)initWithBranch:(OgreTextFindBranch*)aBranch inSelection:(BOOL)inSelection; - (void)setTerminalIndex:(int)index; - (void)setStartIndex:(int)index; @end