mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 01:12:31 +00:00
21 lines
398 B
Objective-C
21 lines
398 B
Objective-C
//
|
|
// MPPluginRepositoryBrowserViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 11.10.18.
|
|
// Copyright © 2018 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MPPluginRepositoryBrowserViewController : NSViewController
|
|
|
|
- (IBAction)refresh:(id)sender;
|
|
- (IBAction)closeBrowser:(id)sender;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|