Playlist Generator  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Defines
Playlist2/playlist2AppDelegate.h
Go to the documentation of this file.
00001 //
00002 //  playlist2AppDelegate.h
00003 //  Playlist2
00004 //
00005 //  Created by Max Woolf on 25/11/2011.
00006 //  Copyright (c) 2011 __MyCompanyName__. All rights reserved.
00007 //
00008 
00009 #import <UIKit/UIKit.h>
00010 
00011 @class playlist2ViewController;
00012 
00013 
00014 @interface playlist2AppDelegate : UIResponder <UIApplicationDelegate>
00015 {
00016     NSManagedObjectModel *managedObjectModel;
00017     NSManagedObjectContext *managedObjectContext;       
00018     NSPersistentStoreCoordinator *persistentStoreCoordinator;
00019 }
00020 
00021 @property (strong, nonatomic) UIWindow *window;
00022 @property (nonatomic, retain, readonly) NSManagedObjectModel *managedObjectModel;
00023 @property (nonatomic, retain, readonly) NSManagedObjectContext *managedObjectContext;
00024 @property (nonatomic, retain, readonly) NSPersistentStoreCoordinator *persistentStoreCoordinator;
00025 @property (strong, nonatomic) playlist2ViewController *viewController;
00026 
00027 - (void)saveContext;
00028 - (NSURL *)applicationDocumentsDirectory;
00029 
00030 
00031 @end