mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-21 15:29:38 +00:00
20 lines
499 B
Objective-C
20 lines
499 B
Objective-C
//
|
|
// Kdb4Tree+KVOAdditions.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 27.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "Kdb4Node.h"
|
|
|
|
@interface Kdb4Tree (KVOAdditions)
|
|
|
|
- (void)insertObject:(Binary *)binary inBinariesAtIndex:(NSUInteger)index;
|
|
- (void)insertObject:(CustomIcon *)icon inCustomIconsAtIndex:(NSUInteger)index;
|
|
|
|
- (CustomIcon *)objectInCustomIconsAtIndex:(NSUInteger)index;
|
|
- (Binary *)objectInBinariesAtIndex:(NSUInteger)index;
|
|
|
|
@end
|