Files
MacPass/MacPass/KPKNode+MPIsHistory.m
2017-04-25 20:05:25 +02:00

20 lines
325 B
Objective-C

//
// KPKNode+MPIsHistory.m
// MacPass
//
// Created by Michael Starke on 25.04.17.
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
//
#import "KPKNode+MPIsHistory.h"
@implementation KPKNode (MPIsHistory)
- (BOOL)isHistory {
/* nil call will return NO */
return self.asEntry.isHistory;
}
@end