cmMSVC60LinkLineComputer.h 810 B

1234567891011121314151617181920212223242526272829
  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 cmMSVC60LinkLineComputer_h
  4. #define cmMSVC60LinkLineComputer_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <string>
  7. #include "cmLinkLineComputer.h"
  8. class cmOutputConverter;
  9. class cmStateDirectory;
  10. class cmMSVC60LinkLineComputer : public cmLinkLineComputer
  11. {
  12. public:
  13. cmMSVC60LinkLineComputer(cmOutputConverter* outputConverter,
  14. cmStateDirectory const& stateDir);
  15. cmMSVC60LinkLineComputer(cmMSVC60LinkLineComputer const&) = delete;
  16. cmMSVC60LinkLineComputer& operator=(cmMSVC60LinkLineComputer const&) =
  17. delete;
  18. std::string ConvertToLinkReference(std::string const& input) const override;
  19. };
  20. #endif