implement dxDontshow flag.. its not possible to set this flag in e2 self..
[enigma2.git] / lib / dvb / idvb.h
index 3a5ef427823c10fae823a4a841c47fae401be91e..11bbbf8e06fa74ea166be98dcd711071525048ff 100644 (file)
@@ -297,13 +297,14 @@ public:
        enum
        {
                dxNoSDT=1,    // don't get SDT
-//nyi  dxDontshow=2,
+               dxDontshow=2,
                dxNoDVB=4,  // dont use PMT for this service ( use cached pids )
                dxHoldName=8,
                dxNewFound=64,
        };
 
        bool usePMT() const { return !(m_flags & dxNoDVB); }
+       bool isHidden() const { return m_flags & dxDontshow; }
 
        CAID_LIST m_ca;