utiltypes.h 351 B

1234567891011121314
  1. // Copyright (C) 2022 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
  3. #pragma once
  4. #include <functional>
  5. namespace Utils {
  6. class FilePath;
  7. enum class IterationPolicy { Stop, Continue };
  8. using FilePathPredicate = std::function<bool(const FilePath &)>;
  9. } // namespace Utils