37class PVREDLEntry :
public CStructHdl<PVREDLEntry, PVR_EDL_ENTRY>
39 friend class CInstancePVRClient;
43 PVREDLEntry() { memset(m_cStructure, 0,
sizeof(
PVR_EDL_ENTRY)); }
44 PVREDLEntry(
const PVREDLEntry& type) : CStructHdl(type) {}
62 void SetStart(int64_t start) { m_cStructure->start = start; }
65 int64_t
GetStart()
const {
return m_cStructure->start; }
68 void SetEnd(int64_t end) { m_cStructure->end = end; }
71 int64_t
GetEnd()
const {
return m_cStructure->end; }
int64_t GetEnd() const
To get with SetEnd() changed values.
Definition EDL.h:71
void SetStart(int64_t start)
Start time in milliseconds.
Definition EDL.h:62
void SetEnd(int64_t end)
End time in milliseconds.
Definition EDL.h:68
int64_t GetStart() const
To get with SetStart() changed values.
Definition EDL.h:65
void SetType(PVR_EDL_TYPE type)
The with PVR_EDL_TYPE used definition list type.
Definition EDL.h:74
PVR_EDL_TYPE GetType() const
To get with SetType() changed values.
Definition EDL.h:77