diff --git a/src/engine/andpostingiterator.h b/src/engine/andpostingiterator.h index b622230f..2b153d04 100644 --- a/src/engine/andpostingiterator.h +++ b/src/engine/andpostingiterator.h @@ -1,45 +1,45 @@ /* This file is part of the KDE Baloo project. * Copyright (C) 2015 Vishesh Handa * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef BALOO_ANDPOSTINGITERATOR_H #define BALOO_ANDPOSTINGITERATOR_H #include "postingiterator.h" #include namespace Baloo { class BALOO_ENGINE_EXPORT AndPostingIterator : public PostingIterator { public: explicit AndPostingIterator(const QVector& iterators); - ~AndPostingIterator(); + ~AndPostingIterator() Q_DECL_OVERRIDE; quint64 next() Q_DECL_OVERRIDE; quint64 docId() const Q_DECL_OVERRIDE; private: QVector m_iterators; quint64 m_docId; }; } #endif // BALOO_ANDPOSTINGITERATOR_H