-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDeviceConfigurator.h
More file actions
38 lines (31 loc) · 906 Bytes
/
DeviceConfigurator.h
File metadata and controls
38 lines (31 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// DeviceConfigurator.h
// data_m
//
// Created by Mike Fluff on 3/16/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Device.h"
#import "Neo_controller.h"
#import "Endpoint_controller.h"
@class Test_Activity_Controller;
@interface DeviceConfigurator : NSObject {
NSString *testType;
Endpoint_controller *iperf_client;
NSInteger links;
NSInteger pairs;
NSInteger neocount;
NSSet *devices;
Test_Activity_Controller *TAC;
NSMutableArray *iperfClients;
NSLock *lock;
NSInteger threadcount;
@private
}
- (id)initWithTest:(NSString *)test withIntNum:(NSInteger)lnk withPairsNum:(NSInteger)prs devices:(NSSet *)devs;
-(void)configureDevices;
- (void)threadFinished;
@property (nonatomic, retain) Test_Activity_Controller *TAC;
@property (nonatomic, retain) NSMutableArray *iperfClients;
@end