Files
MacPass/MacPass/KdbGroup+MPAdditions.h
michael starke 8a21b194df Entry positions are now editable in groups
Added undo wrapper for moving to new group and moving to new indexes for Entries
2013-05-18 01:21:31 +02:00

20 lines
340 B
Objective-C

//
// KdbGroup+MPAdditions.h
// MacPass
//
// Created by michael starke on 19.02.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "KdbLib.h"
@interface KdbGroup (MPAdditions)
- (NSArray *)childGroups;
- (NSArray *)childEntries;
- (void)moveEntry:(KdbEntry *)entry toIndex:(NSUInteger)index;
@end