-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditEducation.h
executable file
·53 lines (42 loc) · 1.44 KB
/
EditEducation.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// EditSeminar.h
// TradeShowInfo
//
// Created by Elon on 4/14/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Baseview.h"
#import "EducationDao.h"
#import "SectionHeaderView.h"
#import "TwoTableViewCell.h"
#import "NotePhotoCell.h"
#import "StarsAndEndsCell.h"
#import "SpeakerCell.h"
#import "EditNotesField.h"
#import "/usr/include/sqlite3.h"
#define databaseFileName @"data.sqlite3"
@interface EditEducation : Baseview<SectionHeaderViewDelegate> {
TwoTableViewCell *TAIC;
NotePhotoCell *NPCell;
StarsAndEndsCell *datetimeCell;
SpeakerCell *speakerCell;
SectionHeaderView *headerViewOfContacts;
SectionHeaderView *headerViewOfBiggestIdeas;
sqlite3 *database;
UIToolbar *keyboardToolbar;
BOOL keyboardToolbarShouldHide;
EducationDao *educationDao;
EditNotesField *newEditNotesField;
}
@property (nonatomic, retain) TwoTableViewCell *TAIC;
@property (nonatomic, retain) NotePhotoCell *NPCell;
@property (nonatomic, retain) StarsAndEndsCell *datetimeCell;
@property (nonatomic, retain) SpeakerCell *speakerCell;
@property (nonatomic,retain) SectionHeaderView *headerViewOfContacts;
@property (nonatomic,assign) BOOL openFlagOfContacts;
@property (nonatomic,retain) SectionHeaderView *headerViewOfBiggestIdeas;
@property (nonatomic, retain) UIToolbar *keyboardToolbar;
@property (nonatomic,retain) EducationDao *educationDao;
@property (nonatomic,retain) EditNotesField *newEditNotesField;
@end