ukui-search/libsearch/index/file-content-indexer.h

38 lines
1.1 KiB
C
Raw Permalink Normal View History

2021-01-29 11:43:07 +08:00
/*
2022-10-26 18:01:40 +08:00
* Copyright (C) 2022, KylinSoft Co., Ltd.
2021-01-29 11:43:07 +08:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
2022-10-26 18:01:40 +08:00
* Authors: iaom <zhangpengfei@kylinos.cn>
2021-01-29 11:43:07 +08:00
*
*/
2022-10-26 18:01:40 +08:00
#ifndef FILECONTENTINDEXER_H
#define FILECONTENTINDEXER_H
2020-12-30 15:31:36 +08:00
2022-10-26 18:01:40 +08:00
#include "document.h"
2021-12-14 14:43:35 +08:00
namespace UkuiSearch {
2022-10-26 18:01:40 +08:00
class fileContentIndexer
{
2020-12-30 15:31:36 +08:00
public:
2022-10-26 18:01:40 +08:00
fileContentIndexer(const QString& filePath);
bool index();
Document document() { return m_document; }
2020-12-30 15:31:36 +08:00
private:
2022-10-26 18:01:40 +08:00
QString m_filePath;
Document m_document;
2020-12-30 15:31:36 +08:00
};
}
2022-10-26 18:01:40 +08:00
#endif // FILECONTENTINDEXER_H