123456789101112131415161718192021222324252627 |
- /*****************************************************************************
- * VLCActivityManager.h
- * 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.
- *****************************************************************************/
- #import <Foundation/Foundation.h>
- @interface VLCActivityManager : NSObject
- + (instancetype)defaultManager;
- - (void)activateIdleTimer;
- - (void)disableIdleTimer;
- - (void)networkActivityStarted;
- - (BOOL)haveNetworkActivity;
- - (void)networkActivityStopped;
- @end
|