mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 21:13:35 +00:00
19 lines
382 B
Objective-C
19 lines
382 B
Objective-C
//
|
|
// MPSettingsController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 23.07.12.
|
|
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@protocol MPSettingsTab;
|
|
|
|
@interface MPSettingsWindowController : NSWindowController <NSToolbarDelegate>
|
|
|
|
- (void)showSettings;
|
|
- (void)showSettingsTabWithIdentifier:(NSString *)identifier;
|
|
|
|
@end
|