mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-05-17 12:40:37 +00:00
22 lines
386 B
Objective-C
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
|