mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 20:02:27 +00:00
17 lines
370 B
Objective-C
17 lines
370 B
Objective-C
//
|
|
// MPEntyTableDataSource.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 09.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class MPEntryViewController;
|
|
@interface MPEntryTableDataSource : NSObject <NSTableViewDataSource>
|
|
|
|
@property (weak, nonatomic) MPEntryViewController *viewController;
|
|
|
|
@end
|