diff options
Diffstat (limited to 'Classes/Cart_CollectAppDelegate.h')
-rwxr-xr-x | Classes/Cart_CollectAppDelegate.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Classes/Cart_CollectAppDelegate.h b/Classes/Cart_CollectAppDelegate.h new file mode 100755 index 0000000..0ef23a7 --- /dev/null +++ b/Classes/Cart_CollectAppDelegate.h | |||
@@ -0,0 +1,23 @@ | |||
1 | // | ||
2 | // Cart_CollectAppDelegate.h | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by iD Student Account on 7/18/11. | ||
6 | // Copyright __MyCompanyName__ 2011. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <UIKit/UIKit.h> | ||
10 | #import <sqlite3.h> | ||
11 | |||
12 | @class RootViewController; | ||
13 | |||
14 | @interface Cart_CollectAppDelegate : NSObject <UIApplicationDelegate> { | ||
15 | UIWindow *window; | ||
16 | RootViewController *viewController; | ||
17 | } | ||
18 | |||
19 | @property (nonatomic, retain) UIWindow *window; | ||
20 | @property (nonatomic, retain) RootViewController* viewController; | ||
21 | + (sqlite3*)database; | ||
22 | |||
23 | @end | ||