16 lines
309 B
Objective-C
16 lines
309 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>
|
|
|
|
@protocol Conjugator
|
|
|
|
- (NSString *) conjugateVerb:(NSString *) verb inPerson:(NSString *) person andTense:(NSString *) tense;
|
|
|
|
@end
|