1234567891011121314151617181920212223242526272829303132333435 |
- /*****************************************************************************
- * Prefix header for all source files of the 'VLC for Apple TV' target
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #ifndef PrefixHeader_pch
- #define PrefixHeader_pch
- #ifdef __OBJC__
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- #endif
- #import <TVVLCKit/TVVLCKit.h>
- #import "UIColor+Presets.h"
- #import "VLCTVConstants.h"
- #import "UIViewController+VLCAlert.h"
- #import "VLCFullscreenMovieTVViewController.h"
- #ifndef NDEBUG
- #define APLog(format, ...) NSLog(format, ## __VA_ARGS__)
- #else
- #define APLog(format, ...)
- #endif
- #endif /* PrefixHeader_pch */
|