123456789101112131415161718192021222324252627282930313233 |
- /*****************************************************************************
- * Prefix header for all source files of the 'vlc-ios' target
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013-2014 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <Availability.h>
- #ifdef __OBJC__
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- #endif
- #import <MobileVLCKit/MobileVLCKit.h>
- #import <MediaLibraryKit/MediaLibraryKit.h>
- #import "VLCConstants.h"
- #import "UIColor+Presets.h"
- #import "UIBarButtonItem+Theme.h"
- #import "UIViewController+VLCAlert.h"
- #ifndef NDEBUG
- #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
- #else
- #define APLog(format, ...)
- #endif
|