mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-21 10:39:28 +00:00
18 lines
392 B
Objective-C
18 lines
392 B
Objective-C
//
|
|
// MPAttachmentTableViewDelegate.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 17.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class MPInspectorViewController;
|
|
|
|
@interface MPAttachmentTableViewDelegate : NSObject <NSTableViewDelegate>
|
|
|
|
@property (nonatomic, weak) MPInspectorViewController *viewController;
|
|
|
|
@end
|