mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
17 lines
338 B
Objective-C
17 lines
338 B
Objective-C
//
|
|
// MPDocumentController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 31.10.14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPDocumentController : NSDocumentController
|
|
|
|
- (IBAction)toggleAllowAllFiles:(id)sender;
|
|
- (IBAction)toggleShowHiddenFiles:(id)sender;
|
|
|
|
@end
|