server_livefilter-add_public_Add_and_Del.patch by Petri Hintukainen

- Add public Add/Del members instead of friend class
This commit is contained in:
schmirl 2007-04-24 11:29:29 +00:00
parent 60b89e8646
commit 99d19c67d8

View File

@ -1,5 +1,5 @@
/* /*
* $Id: livefilter.h,v 1.3 2007/04/23 15:44:55 schmirl Exp $ * $Id: livefilter.h,v 1.4 2007/04/24 11:29:29 schmirl Exp $
*/ */
#ifndef VDR_STREAMEV_LIVEFILTER_H #ifndef VDR_STREAMEV_LIVEFILTER_H
@ -22,6 +22,13 @@ protected:
public: public:
cStreamdevLiveFilter(cStreamdevStreamer *Streamer); cStreamdevLiveFilter(cStreamdevStreamer *Streamer);
void Set(u_short Pid, u_char Tid, u_char Mask) {
cFilter::Set(Pid, Tid, Mask);
}
void Del(u_short Pid, u_char Tid, u_char Mask) {
cFilter::Del(Pid, Tid, Mask);
}
}; };
# endif // VDRVERSNUM >= 10300 # endif // VDRVERSNUM >= 10300