From: Felix Domke Date: Thu, 13 Apr 2006 00:51:40 +0000 (+0000) Subject: add getRefCount to evaluate if a demux is in use X-Git-Tag: 2.6.0~3627 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/7a79e14b385f63a84a12720cadee720a7a803783 add getRefCount to evaluate if a demux is in use --- diff --git a/lib/dvb/demux.h b/lib/dvb/demux.h index 8f11e840..b14dfd26 100644 --- a/lib/dvb/demux.h +++ b/lib/dvb/demux.h @@ -24,6 +24,8 @@ public: RESULT getCADemuxID(uint8_t &id) { id = demux; return 0; } RESULT flush(); RESULT connectEvent(const Slot1 &event, ePtr &conn); + + int getRefCount() { return ref; } private: int adapter, demux;