Browse Source

AspenProject: added the one-includes-all headers to the project's pre-compile header, so we don't have to include individual headers over and over again

Felix Paul Kühne 12 years ago
parent
commit
4c3222f5c6

+ 3 - 0
AspenProject/AspenProject-Prefix.pch

@@ -13,6 +13,9 @@
     #import <Foundation/Foundation.h>
 #endif
 
+#import <MobileVLCKit/MobileVLCKit.h>
+#import <MediaLibraryKit/MediaLibraryKit.h>
+
 #ifndef NDEBUG
 #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
 #else

+ 0 - 2
AspenProject/VLCAppDelegate.m

@@ -8,8 +8,6 @@
 
 #import "VLCAppDelegate.h"
 
-#import <MediaLibraryKit/MLMediaLibrary.h>
-
 #import "VLCPlaylistViewController.h"
 
 #import "VLCMovieViewController.h"

+ 0 - 1
AspenProject/VLCMovieViewController.h

@@ -7,7 +7,6 @@
 //
 
 #import <UIKit/UIKit.h>
-#import <MediaLibraryKit/MLFile.h>
 
 @interface VLCMovieViewController : UIViewController <UISplitViewControllerDelegate>
 

+ 0 - 3
AspenProject/VLCPlaylistViewController.m

@@ -6,9 +6,6 @@
 //  Copyright (c) 2013 VideoLAN. All rights reserved.
 //
 
-#import <MediaLibraryKit/MLFile.h>
-#import <MediaLibraryKit/MLMediaLibrary.h>
-
 #import "VLCPlaylistViewController.h"
 
 #import "VLCMovieViewController.h"