summaryrefslogtreecommitdiff
path: root/bindings/objc/src/VerseEnumerator.h
blob: 52da7abb4434f6cf638a3a24eb42c5f825bcc055 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  VerseEnumerator.h
//  MacSword2
//
//  Created by Manfred Bergmann on 25.02.10.
//  Copyright 2010 Software by MABE. All rights reserved.
//

#import <Foundation/Foundation.h>

@class SwordListKey;

@interface VerseEnumerator : NSEnumerator {
    SwordListKey *listKey;
}

- (id)initWithListKey:(SwordListKey *)aListKey;

- (NSArray *)allObjects;
- (NSString *)nextObject;

@end