mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 15:12:21 +00:00
24 lines
710 B
Objective-C
24 lines
710 B
Objective-C
//
|
|
// Kdb4Entry+KVOAdditions.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 28.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "Kdb4Node.h"
|
|
|
|
@interface Kdb4Entry (KVOAdditions)
|
|
|
|
- (NSUInteger)countOfStringFields;
|
|
- (StringField *)objectInStringFieldsAtIndex:(NSUInteger)index;
|
|
- (void)removeObjectFromStringFieldsAtIndex:(NSUInteger)anIndex;
|
|
- (void)insertObject:(StringField *)stringfield inStringFieldsAtIndex:(NSUInteger)anIndex;
|
|
|
|
- (NSUInteger)countOfBinaries;
|
|
- (BinaryRef *)objectInBinariesAtIndex:(NSUInteger)index;
|
|
- (void)removeObjectFromBinariesAtIndex:(NSUInteger)index;
|
|
- (void)insertObject:(BinaryRef *)binary inBinariesAtIndex:(NSUInteger)index;
|
|
|
|
@end
|