mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 22:32:22 +00:00
27 lines
628 B
Objective-C
27 lines
628 B
Objective-C
//
|
|
// ShowNetworksViewController.h
|
|
// ZeroTier One
|
|
//
|
|
// Created by Grant Limberg on 8/7/16.
|
|
// Copyright © 2016 ZeroTier, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class NetworkMonitor;
|
|
@class Network;
|
|
|
|
@interface ShowNetworksViewController : NSViewController<NSTableViewDelegate, NSTableViewDataSource>
|
|
|
|
@property (nonatomic) NSArray<Network*> *networkList;
|
|
@property (nonatomic) NetworkMonitor *netMonitor;
|
|
@property (nonatomic) BOOL visible;
|
|
|
|
@property (weak, nonatomic) IBOutlet NSTableView *tableView;
|
|
|
|
- (void)deleteNetworkFromList:(NSString*)nwid;
|
|
- (void)setNetworks:(NSArray<Network*>*)list;
|
|
|
|
|
|
@end
|