mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-05-17 12:40:37 +00:00
24 lines
432 B
Objective-C
24 lines
432 B
Objective-C
//
|
|
// MPExportPanelAccessoryViewController.m
|
|
// MacDown
|
|
//
|
|
// Created by Tzu-ping Chung on 14/06/2014.
|
|
// Copyright (c) 2014 Tzu-ping Chung . All rights reserved.
|
|
//
|
|
|
|
#import "MPExportPanelAccessoryViewController.h"
|
|
|
|
@interface MPExportPanelAccessoryViewController ()
|
|
|
|
@end
|
|
|
|
|
|
@implementation MPExportPanelAccessoryViewController
|
|
|
|
- (id)init
|
|
{
|
|
return [self initWithNibName:NSStringFromClass(self.class) bundle:nil];
|
|
}
|
|
|
|
@end
|