ExcludedFolderCacheInterface.h 816 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/std/containers/unordered_set.h>
  10. #include <QString>
  11. namespace AssetProcessor
  12. {
  13. class PlatformConfiguration;
  14. struct ExcludedFolderCacheInterface
  15. {
  16. AZ_RTTI(ExcludedFolderCacheInterface, "{3AC471B6-C9F8-49CF-9E9D-237BDF63328C}");
  17. AZ_DISABLE_COPY_MOVE(ExcludedFolderCacheInterface);
  18. ExcludedFolderCacheInterface() = default;
  19. virtual ~ExcludedFolderCacheInterface() = default;
  20. virtual const AZStd::unordered_set<AZStd::string>& GetExcludedFolders() = 0;
  21. virtual void FileAdded(QString path) = 0;
  22. };
  23. }