Add destructor
This commit is contained in:
parent
9b654768aa
commit
7a520dc944
|
@ -491,6 +491,10 @@ FListViewIterator::FListViewIterator (iterator iter)
|
||||||
: node(iter)
|
: node(iter)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
|
//----------------------------------------------------------------------
|
||||||
|
FListViewIterator::~FListViewIterator() // destructor
|
||||||
|
{ }
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
FListViewIterator::FListViewIterator (const FListViewIterator& i)
|
FListViewIterator::FListViewIterator (const FListViewIterator& i)
|
||||||
: iter_path(i.iter_path) // copy constructor
|
: iter_path(i.iter_path) // copy constructor
|
||||||
|
|
|
@ -193,6 +193,9 @@ class FListViewIterator
|
||||||
FListViewIterator (const FListViewIterator&); // copy constructor
|
FListViewIterator (const FListViewIterator&); // copy constructor
|
||||||
FListViewIterator (FListViewIterator&&) noexcept; // move constructor
|
FListViewIterator (FListViewIterator&&) noexcept; // move constructor
|
||||||
|
|
||||||
|
// Destructor
|
||||||
|
~FListViewIterator();
|
||||||
|
|
||||||
// Overloaded operators
|
// Overloaded operators
|
||||||
FListViewIterator& operator = (const FListViewIterator&);
|
FListViewIterator& operator = (const FListViewIterator&);
|
||||||
FListViewIterator& operator = (FListViewIterator&&) noexcept;
|
FListViewIterator& operator = (FListViewIterator&&) noexcept;
|
||||||
|
|
Loading…
Reference in New Issue