model changes are propagates for all changes to an entry

This commit is contained in:
michael starke
2016-08-30 18:34:48 +02:00
parent f3a77bfd2d
commit 7a14506156
21 changed files with 164 additions and 199 deletions

View File

@@ -0,0 +1,17 @@
//
// MPModelChangeNotification.h
// MacPass
//
// Created by Michael Starke on 30/08/16.
// Copyright © 2016 HicknHack Software GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol MPModelChangeObserving <NSObject>
@required
- (void)willChangeModelProperty;
- (void)didChangeModelProperty;
@end