mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 11:42:30 +00:00
19 lines
375 B
Objective-C
19 lines
375 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"
|
|
|
|
@interface MPOutlineViewController : MPViewController
|
|
|
|
- (void)clearSelection;
|
|
|
|
- (void)createGroup:(id)sender;
|
|
- (void)createEntry:(id)sender;
|
|
- (void)deleteEntry:(id)sender;
|
|
@end
|