espagram/Espagram/Lesson+Conjugator.h
2013-02-21 17:08:51 +01:00

24 lines
383 B
Objective-C

//
// Lesson+Conjugator.h
// Espagram
//
// Created by Abel Fokkinga on 11/14/12.
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
//
#import "Lesson.h"
#import "Conjugator.h"
#import "tense.h"
@interface Lesson (Conjugator)
- (id <Conjugator>)getConjugationEngine;
- (Tense *) getTenseAsTense;
- (NSString *) getTenseName;
- (NSString *) getLocalizedTense;
@end