-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditPlanning.h
executable file
·34 lines (29 loc) · 1.14 KB
/
EditPlanning.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
//
// EditPlanning.h
// TradeShowInfo
//
// Created by Bright Creek on 5/9/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Baseview.h"
//#import "MeetingDao.h"
#import "SectionHeaderView.h"
#import "/usr/include/sqlite3.h"
#define databaseFileName @"data.sqlite3"
@interface EditPlanning : Baseview<SectionHeaderViewDelegate> {
SectionHeaderView *headerViewOfYourBiggestGoals;
SectionHeaderView *headerViewOfCompaniesToVisit;
SectionHeaderView *headerViewOfFieldVisits;
SectionHeaderView *headerViewOfSeminarsAndWorkshop;
SectionHeaderView *headerViewOfStrategicMeetings;
SectionHeaderView *headerViewOfDayPlanner;
sqlite3 *database;
}
@property (nonatomic,retain) SectionHeaderView *headerViewOfYourBiggestGoals;
@property (nonatomic,retain) SectionHeaderView *headerViewOfCompaniesToVisit;
@property (nonatomic,retain) SectionHeaderView *headerViewOfFieldVisits;
@property (nonatomic,retain) SectionHeaderView *headerViewOfSeminarsAndWorkshop;
@property (nonatomic,retain) SectionHeaderView *headerViewOfStrategicMeetings;
@property (nonatomic,retain) SectionHeaderView *headerViewOfDayPlanner;
@end