-
Notifications
You must be signed in to change notification settings - Fork 0
/
Actor.m
52 lines (46 loc) · 796 Bytes
/
Actor.m
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
52
//
// Actor.m
// scraper
//
// Created by michael on 08.01.15.
// Copyright (c) 2015 michael. All rights reserved.
//
#import "Actor.h"
@implementation Actor
-(id) init;
{
if (self = [super init]) {
// Initialization code here
_name = @"";
_role = @"";
_order = @"";
_thumb = @"";
}
return self;
}
-(id) initWithName:(NSString *) aName;
{
if (self = [super init]) {
// Initialization code here
_name = aName;
_role = @"";
_order = @"";
_thumb = @"";
}
return self;
}
-(id) initWithName:(NSString *) aName
andRole:(NSString *) aRole
andOrder:(NSString *) aOrder
andThumb:(NSString *) aThumb;
{
if (self = [super init]) {
// Initialization code here
_name = aName;
_role = aRole;
_order = aOrder;
_thumb = aThumb;
}
return self;
}
@end