mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 01:12:31 +00:00
18 lines
327 B
Objective-C
18 lines
327 B
Objective-C
//
|
|
// MPArrayController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 30/08/16.
|
|
// Copyright © 2016 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@protocol MPModelChangeObserving;
|
|
|
|
@interface MPArrayController : NSArrayController
|
|
|
|
@property (weak) id<MPModelChangeObserving> observer;
|
|
|
|
@end
|