Version 0.1. Conjugation kinda working from the testing screen

This commit is contained in:
Abel Fokkinga
2012-11-09 19:39:17 +01:00
parent 0b783c1173
commit af0959ff7b
20 changed files with 1023 additions and 394 deletions

View File

@@ -7,9 +7,16 @@
//
#import <Foundation/Foundation.h>
#import "Tense.h"
@protocol Conjugator
- (NSString *) conjugateVerb:(NSString *) verb inPerson:(NSString *) person andTense:(NSString *) tense;
- (NSDictionary *) persons;
- (NSArray *) personsKeys;
- (NSString *) conjugateVerb:(NSString *) verb inPerson:(NSString *) person andTense:(Tense *) tense;
- (NSString *) description;
@end