espagram/Espagram/Lesson+Conjugator.h
2012-11-23 23:06:49 +01:00

22 lines
348 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;
@end