mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 12:52:21 +00:00
23 lines
396 B
Objective-C
23 lines
396 B
Objective-C
//
|
|
// KdbTree+MPAdditions.m
|
|
// MacPass
|
|
//
|
|
// Created by michael starke on 20.02.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "KdbTree+MPAdditions.h"
|
|
#import "KdbGroup+MPAdditions.h"
|
|
|
|
@implementation KdbTree (MPAdditions)
|
|
|
|
- (NSArray *)allGroups {
|
|
return [self.root childGroups];
|
|
}
|
|
|
|
- (NSArray *)allEntries {
|
|
return [self.root childEntries];
|
|
}
|
|
|
|
@end
|