26 lines
569 B
Objective-C
26 lines
569 B
Objective-C
//
|
|
// Conjugator.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 10/22/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "Tense.h"
|
|
|
|
@protocol Conjugator
|
|
|
|
|
|
- (NSDictionary *) persons;
|
|
- (NSDictionary *) reflexivePersons;
|
|
- (NSArray *) personsKeys;
|
|
|
|
- (NSString *) conjugateVerb:(NSString *) verb inPerson:(NSString *) person andTense:(Tense *) tense;
|
|
|
|
- (NSMutableArray *) getTestConjugationsForVerb:(NSString *) verb inPerson:(NSString *) person andTense:(Tense *) tense;
|
|
|
|
- (NSString *) description;
|
|
|
|
@end
|