2018-09-19 17:00:17 +00:00
|
|
|
//
|
|
|
|
// Deployer.h
|
|
|
|
// I2PLauncher
|
|
|
|
//
|
|
|
|
// Created by Mikal Villa on 19/09/2018.
|
|
|
|
// Copyright © 2018 The I2P Project. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
2018-10-11 11:55:05 +00:00
|
|
|
#import <Foundation/NSError.h>
|
|
|
|
#import "AppDelegate.h"
|
2018-09-19 17:00:17 +00:00
|
|
|
|
2018-10-11 11:55:05 +00:00
|
|
|
@class ExtractMetaInfo;
|
2018-09-19 17:00:17 +00:00
|
|
|
|
|
|
|
|
2018-10-11 11:55:05 +00:00
|
|
|
@interface I2PDeployer : NSObject
|
|
|
|
@property (assign) ExtractMetaInfo *metaInfo;
|
|
|
|
- (I2PDeployer *) initWithMetaInfo:(ExtractMetaInfo*)mi;
|
|
|
|
- (void) extractI2PBaseDir:(void(^)(BOOL success, NSError *error))completion;
|
2018-09-19 17:00:17 +00:00
|
|
|
@end
|
|
|
|
|