22 lines
348 B
Objective-C
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
|