mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-18 09:59:32 +00:00
21 lines
538 B
Objective-C
21 lines
538 B
Objective-C
//
|
|
// MPCustomFieldTableCellView.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 28.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MPModelChangeObserving.h"
|
|
|
|
@interface MPCustomFieldTableCellView : NSTableCellView
|
|
|
|
@property (nonatomic, weak) IBOutlet NSTextField *labelTextField;
|
|
@property (nonatomic, weak) IBOutlet NSTextField *valueTextField;
|
|
@property (nonatomic, weak) IBOutlet NSButton *removeButton;
|
|
|
|
@property (weak) id<MPModelChangeObserving> observer;
|
|
|
|
@end
|