18 lines
310 B
Objective-C
18 lines
310 B
Objective-C
//
|
|
// Tense.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/8/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Tense : NSObject
|
|
|
|
@property (nonatomic, strong) NSString * tense;
|
|
|
|
- (NSString *) getTenseInLanguage:(NSString *)language;
|
|
|
|
@end
|