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

25 lines
586 B
Objective-C

//
// EspagramLessonViewController.h
// Espagram
//
// Created by Abel Fokkinga on 11/12/12.
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CoreDataTableViewController.h"
#import "Conjugator.h"
#import "EspagramNewLessonViewController.h"
#import "Tense.h"
@interface EspagramLessonViewController : CoreDataTableViewController <EspagramNewLessonDelegate>
@property (nonatomic, strong) UIManagedDocument * lessonsDatabase;
@property (nonatomic, strong)
id <Conjugator> conjugator;
@property (nonatomic, strong)
Tense * tense;
@end