Swiftgram/submodules/LegacyComponents/Sources/CBDownloadOperationDelegate.h
2020-02-22 15:38:54 +04:00

18 lines
377 B
Objective-C
Executable File

//
// CBDownloadOperationDelegate.h
// CoubPlayer
//
// Created by Pavel Tikhonenko on 19/10/14.
// Copyright (c) 2014 Pavel Tikhonenko. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol CBDownloadOperationDelegate <NSObject>
@optional
- (void)downloadDidReachProgress:(float)progress;
- (void)downloadHasBeenCancelledWithError:(NSError *)error;
@end