#import <UIKit/UIKit.h>
#import "NotepadViewController.h"
#import "NotesTableViewController.h"
#import "NoteInformationTransferProtocol.h"
@interface NotesViewController : UIViewController <NoteInformationTransferProtocol>
{
UITextField *_noteTitleTextField;
UIButton *_addButton;
UITextField *_description;
UIView *_notesTableView;
NotepadViewController * _notepadVC;
NotesTableViewController *_noteTableVC;
}
I am getting the error "Expected specifier-qualifier-list before NotepadViewController" on "NotepadViewController * _notepadVC;" I already imported that class' header so it should detect it as a type, right?