X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fbase%2Feptrlist.h;h=0da46daa49ca47759531616f2b0df746c3365fe7;hp=7e7a45a2c3580bc2c1f59fbd0b026c666248893f;hb=a87ad4f47c8badc8826a3541717fd1d26daf614b;hpb=ff008af237bba3e58012f637cbe8996f4450f031 diff --git a/lib/base/eptrlist.h b/lib/base/eptrlist.h index 7e7a45a..0da46da 100644 --- a/lib/base/eptrlist.h +++ b/lib/base/eptrlist.h @@ -58,8 +58,8 @@ public: inline const T* last() const; // added operator methods - inline operator bool(); - inline bool operator!(); + inline operator bool() const; + inline bool operator!() const; // added compare struct ... to sort struct less; @@ -164,7 +164,7 @@ public: // returns a pointer to this new vector ( the reserved memory must deletet from the receiver !! ) std::vector* v=new std::vector(); v->reserve( std::list::size() ); - for ( std_list_T_iterator it( std::list::begin() ); it != std::list::end(); it++) + for ( std_list_T_iterator it( std::list::begin() ); it != std::list::end(); it++) v->push_back( **it ); return v; @@ -623,14 +623,14 @@ struct ePtrList::less /////////////////// ePtrList operator bool //////////////////// template -ePtrList::operator bool() +ePtrList::operator bool() const { // Returns a bool that contains true, when the list is NOT empty otherwise false return !std::list::empty(); } template -bool ePtrList::operator!() +bool ePtrList::operator!() const { // Returns a bool that contains true, when the list is empty otherwise false return std::list::empty(); @@ -687,8 +687,8 @@ public: inline const T* last() const; // added operator methods - inline operator bool(); - inline bool operator!(); + inline operator bool() const; + inline bool operator!() const; // added compare struct ... to sort struct less; @@ -1233,14 +1233,14 @@ struct eSmartPtrList::less /////////////////// eSmartPtrList operator bool //////////////////// template -eSmartPtrList::operator bool() +eSmartPtrList::operator bool() const { // Returns a bool that contains true, when the list is NOT empty otherwise false return !std::list::empty(); } template -bool eSmartPtrList::operator!() +bool eSmartPtrList::operator!() const { // Returns a bool that contains true, when the list is empty otherwise false return std::list::empty();