19 lines
400 B
Objective-C
19 lines
400 B
Objective-C
//
|
|
// EspagramConjugationTableViewController.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/9/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SpanishConjugator.h"
|
|
#import "Lesson+Conjugator.h"
|
|
#import "Verb.h"
|
|
|
|
@interface EspagramConjugationTableViewController : UITableViewController
|
|
|
|
@property (weak, nonatomic) IBOutlet Verb *verb;
|
|
|
|
@end
|