Revision 59be6a47 src/recording.h
src/recording.h | ||
---|---|---|
35 | 35 |
|
36 | 36 |
Recording(const std::string &type, |
37 | 37 |
const std::string &channel, |
38 |
bool convertToPS, |
|
38 | 39 |
int priority, |
39 | 40 |
time_t startTime, |
40 | 41 |
unsigned duration, |
... | ... | |
42 | 43 |
uid_t uid) |
43 | 44 |
: job(-1), |
44 | 45 |
type(type), channel(channel), |
46 |
convertToPS(convertToPS), |
|
45 | 47 |
priority(priority), startTime(startTime), |
46 | 48 |
duration(duration), path(path), |
47 | 49 |
uid(uid) |
... | ... | |
66 | 68 |
return channel; |
67 | 69 |
} |
68 | 70 |
|
71 |
bool getConvertToPS() const { |
|
72 |
return convertToPS; |
|
73 |
} |
|
74 |
|
|
69 | 75 |
int getPriority() const { |
70 | 76 |
return priority; |
71 | 77 |
} |
... | ... | |
99 | 105 |
private: |
100 | 106 |
int job; |
101 | 107 |
std::string type, channel; |
108 |
bool convertToPS; |
|
102 | 109 |
int priority; |
103 | 110 |
time_t startTime; |
104 | 111 |
unsigned duration; |
Also available in: Unified diff