dvbd / src / recordconnection.h @ fc92ba5f
History | View | Annotate | Download (1.4 KB)
1 |
// -*- c++ -*-
|
---|---|
2 |
/*
|
3 |
Copyright 2003 John Knottenbelt
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
7 |
the Free Software Foundation; either version 2 of the License, or
|
8 |
(at your option) any later version.
|
9 |
|
10 |
This program is distributed in the hope that it will be useful,
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
GNU General Public License for more details.
|
14 |
|
15 |
You should have received a copy of the GNU General Public License
|
16 |
along with this program; if not, write to the Free Software
|
17 |
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
18 |
*/
|
19 |
|
20 |
#if !defined __RECORDCONNECTION_H
|
21 |
#define __RECORDCONNECTION_H
|
22 |
|
23 |
#include "connection.h" |
24 |
#include "recording.h" |
25 |
|
26 |
class RecordConnection : public Connection { |
27 |
public:
|
28 |
|
29 |
RecordConnection(const Recording &rec, TunerManager *tm, int dataFD); |
30 |
|
31 |
virtual std::ostream& printOn(std::ostream &) const;
|
32 |
|
33 |
virtual void addSelectFDs(Select &s) const; |
34 |
virtual bool processReady(const Select &s); |
35 |
|
36 |
bool tune();
|
37 |
|
38 |
time_t getStopTime() const
|
39 |
{ |
40 |
return rec.getStopTime();
|
41 |
} |
42 |
|
43 |
int getJob() const { |
44 |
return rec.getJob();
|
45 |
} |
46 |
|
47 |
protected:
|
48 |
virtual std::string getType() const;
|
49 |
|
50 |
private:
|
51 |
|
52 |
Recording rec; /** All the details of the recording */
|
53 |
|
54 |
}; |
55 |
|
56 |
#endif // __RECORDCONNECTION_H |