Files
2016-03-09 23:20:13 +08:00

22 lines
386 B
Objective-C

//
// MPPlugIn.h
// MacDown
//
// Created by Tzu-ping Chung on 02/3.
// Copyright © 2016 Tzu-ping Chung . All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MPDOcument.h"
@interface MPPlugIn : NSObject
@property (nonatomic, readonly) NSString *name;
- (instancetype)initWithBundle:(NSBundle *)bundle;
- (BOOL)run:(id)sender;
- (void)plugInDidInitialize;
@end