forked from UNAMMobile/Descarga-Cultura-UNAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEstados.h
53 lines (39 loc) · 1.07 KB
/
Estados.h
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
53
//
// Estados.h
// Descarga Cultura UNAM
//
// Created by Genaro Marmolejo on 02/02/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Estados : NSObject {
BOOL repro;
BOOL wait;
BOOL descargando;
BOOL descargado;
NSString *urlPath;
NSString *image;
int raiting;
NSString *title;
NSString *duracion;
NSString *author;
}
- (void) initWithDefaultValues;
- (void) initWithTitle: (NSString *)titulo image: (NSString *)imagen urlPath: (NSString *)
url raiting: (int)puntaje length: (NSString *)tiempo author: (NSString *) autor;
- (void) setPlaying: (BOOL)playing;
- (void) setWaiting: (BOOL)waiting;
- (void) setDownloading: (BOOL)downloading;
- (void) setDownloaded: (BOOL)downloaded;
- (void) changeURL:(NSString *)miURL;
- (BOOL) getPlaying;
- (BOOL) getWaiting;
- (BOOL) getDownloading;
- (BOOL) getDownloaded;
- (NSString *) getUrlPath;
- (NSString *) getImage;
- (int) getRaiting;
- (NSString *) getTitle;
- (NSString *) getLength;
- (NSString *) getAuthor;
@end