/* This file is part of the KDE Baloo Project SPDX-FileCopyrightText: 2015 Vishesh Handa SPDX-License-Identifier: LGPL-2.1-or-later */ #ifndef BALOO_POSITIONCODEC_H #define BALOO_POSITIONCODEC_H #include #include #include "positiondb.h" namespace Baloo { class PositionCodec { public: static QByteArray encode(const QVector& list); static QVector decode(const QByteArray& arr); }; } #endif // BALOO_POSITIONCODEC_H