cmLDConfigTool.h 530 B

123456789101112131415161718192021222324
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmLDConfigTool_h
  4. #define cmLDConfigTool_h
  5. #include <string>
  6. #include <vector>
  7. class cmRuntimeDependencyArchive;
  8. class cmLDConfigTool
  9. {
  10. public:
  11. cmLDConfigTool(cmRuntimeDependencyArchive* archive);
  12. virtual ~cmLDConfigTool() = default;
  13. virtual bool GetLDConfigPaths(std::vector<std::string>& paths) = 0;
  14. protected:
  15. cmRuntimeDependencyArchive* Archive;
  16. };
  17. #endif