20 lines
531 B
Objective-C
20 lines
531 B
Objective-C
//
|
|
// EspagramWordsInLessonViewController.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/14/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "CoreDataTableViewController.h"
|
|
#import "EspagramAddWordToLessonViewController.h"
|
|
#import "EspagramConjugationTableViewController.h"
|
|
#import "Lesson.h"
|
|
|
|
@interface EspagramWordsInLessonViewController : CoreDataTableViewController <EspagramAddWordToLessonViewControllerDelegate>;
|
|
|
|
@property (nonatomic, strong) Lesson * lesson;
|
|
|
|
@end
|