mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-23 10:19:26 +00:00
Fixed include issue Added Tests for NSCoding compliance of KPKAttribute, KPKEntry and KPKBinary
22 lines
541 B
Objective-C
22 lines
541 B
Objective-C
//
|
|
// MPGroupInspectorViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 27.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
@class MPDocument;
|
|
@class HNHRoundedTextField;
|
|
|
|
@interface MPGroupInspectorViewController : MPViewController
|
|
|
|
@property (strong) IBOutlet NSView *contentView;
|
|
@property (weak) IBOutlet HNHRoundedTextField *titleTextField;
|
|
@property (unsafe_unretained) IBOutlet NSTextView *notesTextView;
|
|
|
|
- (void)setupBindings:(MPDocument *)document;
|
|
|
|
@end
|