/** \brief Saves MPEG PIDs to cache to database * \param pid_cache List of PIDs with their TableID types to be saved. */ void DTVChannel::SaveCachedPids(const pid_cache_t &pid_cache) const { int chanid = GetChanID(); if (chanid > 0) ChannelUtil::SaveCachedPids(chanid, pid_cache); }
void DVBChannel::GetCachedPids(pid_cache_t &pid_cache) const { int chanid = GetChanID(); if (chanid > 0) DTVChannel::GetCachedPids(chanid, pid_cache); }