diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-09 08:39:19 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-09 08:39:19 +0200 |
commit | 8e9d44524830c290f2fc83f08e188ba37a7740d4 (patch) | |
tree | 0fe1ce709f6f2912c4f786de7d2b0141d618af09 /filter.h | |
parent | 7d1dde01baad1e387a93833498f45167ff504acd (diff) | |
download | vdr-8e9d44524830c290f2fc83f08e188ba37a7740d4.tar.gz vdr-8e9d44524830c290f2fc83f08e188ba37a7740d4.tar.bz2 |
cListObject now implements a private copy constructor and assignment operator, to keep derived objects from calling them implicitly
Diffstat (limited to 'filter.h')
-rw-r--r-- | filter.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: filter.h 4.2 2015/07/25 10:03:44 kls Exp $ + * $Id: filter.h 4.3 2017/05/09 08:37:23 kls Exp $ */ #ifndef __FILTER_H @@ -38,6 +38,7 @@ public: bool sticky; cFilterData(void); cFilterData(u_short Pid, u_char Tid, u_char Mask, bool Sticky); + cFilterData& operator= (const cFilterData &FilterData); bool Is(u_short Pid, u_char Tid, u_char Mask); bool Matches(u_short Pid, u_char Tid); }; |