mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 17:32:17 +00:00
23 lines
411 B
Objective-C
23 lines
411 B
Objective-C
//
|
|
// MPEditSession.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 30/05/14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class KPKNode;
|
|
|
|
@interface MPEditSession : NSObject
|
|
|
|
@property (strong, readonly) KPKNode *node;
|
|
@property (copy, readonly) KPKNode *rollbackNode;
|
|
|
|
- (instancetype)initWithNode:(KPKNode *)node;
|
|
|
|
- (BOOL)hasChanges;
|
|
|
|
@end
|