mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 09:22:33 +00:00
18 lines
388 B
Objective-C
18 lines
388 B
Objective-C
//
|
|
// MPCustomFieldView.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 27.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPCustomFieldView : NSView
|
|
|
|
@property (weak) IBOutlet NSTextField *labelTextField;
|
|
@property (weak) IBOutlet NSTextField *valueTextField;
|
|
@property (weak) IBOutlet NSButton *deleteButton;
|
|
|
|
@end
|