blob: c09a876acc0cab919dfb1865357717b2c46fde55 (
plain) (
blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//
// LaunchArg.m
// Pcsxr
//
// Created by C.W. Betts on 7/8/13.
//
//
#import "LaunchArg.h"
@interface LaunchArg ()
@property (readwrite) unsigned launchOrder;
@property (readwrite, copy, nonatomic) dispatch_block_t theBlock;
@property (readwrite, copy) NSString *argument;
@end
@implementation LaunchArg
@synthesize argument = _argument;
@synthesize launchOrder = _launchOrder;
@synthesize theBlock = _theBlock;
- (void)setTheBlock:(dispatch_block_t)theBlock
{
_theBlock = [theBlock copy];
}
- (instancetype)initWithLaunchOrder:(unsigned)order argument:(NSString*)arg block:(dispatch_block_t)block
{
if (self = [super init]) {
self.launchOrder = order;
self.theBlock = block;
self.argument = arg;
}
return self;
}
- (instancetype)initWithLaunchOrder:(unsigned)order block:(dispatch_block_t)block argument:(NSString*)arg
{
return [self initWithLaunchOrder:order argument:arg block:block];
}
- (void)addToDictionary:(NSMutableDictionary*)toAdd
{
toAdd[self.argument] = self;
}
- (NSString*)description
{
return [NSString stringWithFormat:@"Arg: %@, order: %u, block addr: %p", _argument, _launchOrder, _theBlock];
}
@end
|