mirror of
https://github.com/leanote/leanote-ios.git
synced 2026-01-14 02:04:36 +08:00
17 lines
324 B
Objective-C
17 lines
324 B
Objective-C
//
|
|
// SyncService.h
|
|
// Leanote
|
|
//
|
|
// Created by life on 15/6/7.
|
|
// Copyright (c) 2015年 life. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "BaseService.h"
|
|
|
|
@interface SyncService : BaseService
|
|
|
|
+ (void) incrSync:(void (^)(BOOL))callback progress:(void (^)(int))progress;
|
|
+ (void) cancelSync;
|
|
@end
|