// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include "cppeditor_global.h" #include #include namespace CppEditor { class CPPEDITOR_EXPORT FileIterationOrder { public: struct Entry { Entry(const Utils::FilePath &filePath, const QString &projectPartId = {}, int commonFilePathPrefixLength = 0, int commonProjectPartPrefixLength = 0); friend CPPEDITOR_EXPORT bool operator<(const Entry &first, const Entry &second); const Utils::FilePath filePath; const QString projectPartId; int commonFilePathPrefixLength = 0; int commonProjectPartPrefixLength = 0; }; FileIterationOrder(); FileIterationOrder(const Utils::FilePath &referenceFilePath, const QString &referenceProjectPartId); void setReference(const Utils::FilePath &filePath, const QString &projectPartId); bool isValid() const; void insert(const Utils::FilePath &filePath, const QString &projectPartId = QString()); void remove(const Utils::FilePath &filePath, const QString &projectPartId); QStringList toStringList() const; Utils::FilePaths toFilePaths() const; private: Entry createEntryFromFilePath(const Utils::FilePath &filePath, const QString &projectPartId) const; private: Utils::FilePath m_referenceFilePath; QString m_referenceProjectPartId; std::multiset m_set; }; CPPEDITOR_EXPORT bool operator<(const FileIterationOrder::Entry &first, const FileIterationOrder::Entry &second); } // namespace CppEditor