Signed-off-by: michael starke <michael.starke@hicknhack-software.com>
This commit is contained in:
michael starke
2015-08-03 12:52:21 +02:00
parent a1e05ca307
commit 0de6f214e6
3 changed files with 10 additions and 10 deletions

View File

@@ -10,7 +10,7 @@
@class KPKNode;
@interface MPEditSession : NSObject
@interface MPEditingSession : NSObject
@property (strong, readonly) KPKNode *node;
@property (copy, readonly) KPKNode *rollbackNode;

View File

@@ -6,17 +6,17 @@
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
//
#import "MPEditSession.h"
#import "MPEditingSession.h"
#import "KPKNode.h"
@interface MPEditSession ()
@interface MPEditingSession ()
@property (strong) KPKNode *node;
@property (copy) KPKNode *rollbackNode;
@end
@implementation MPEditSession
@implementation MPEditingSession
- (instancetype)init {
self = [self initWithNode:nil];