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

#import <Cocoa/Cocoa.h>

@class SwordKey;

@interface SwordModuleTextEntry : NSObject {
    NSString *key;
    NSString *text;
}

@property (readwrite, retain) NSString *key;
@property (readwrite, retain) NSString *text;

+ (id)textEntryForKey:(NSString *)aKey andText:(NSString *)aText;
- (id)initWithKey:(NSString *)aKey andText:(NSString *)aText;

@end