mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 14:02:28 +00:00
27 lines
545 B
Objective-C
27 lines
545 B
Objective-C
//
|
|
// MPOutlineViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by michael starke on 19.02.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
|
|
@class MPOutlineViewDelegate;
|
|
|
|
@interface MPOutlineViewController : MPViewController
|
|
|
|
@property (retain, readonly) MPOutlineViewDelegate *outlineDelegate;
|
|
@property (assign, nonatomic) BOOL isVisible;
|
|
|
|
- (void)clearSelection;
|
|
- (void)showOutline;
|
|
|
|
|
|
- (void)createGroup:(id)sender;
|
|
- (void)createEntry:(id)sender;
|
|
- (void)deleteEntry:(id)sender;
|
|
|
|
@end
|