You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
388 B

//
// IMOBFPlugin.h
// MOBFoundation
//
// Created by fenghj on 15/6/2.
// Copyright (c) 2015年 MOB. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
*
*/
@protocol IMOBFPlugin <NSObject>
@required
/**
*
*
* @param key
*/
- (void)load:(NSString *)key;
/**
*
*/
- (void)unload;
@end