cmCursesFilePathWidget.h 613 B

12345678910111213141516171819
  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 cmCursesFilePathWidget_h
  4. #define cmCursesFilePathWidget_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include "cmCursesPathWidget.h"
  7. class cmCursesFilePathWidget : public cmCursesPathWidget
  8. {
  9. public:
  10. cmCursesFilePathWidget(int width, int height, int left, int top);
  11. cmCursesFilePathWidget(cmCursesFilePathWidget const&) = delete;
  12. cmCursesFilePathWidget& operator=(cmCursesFilePathWidget const&) = delete;
  13. };
  14. #endif // cmCursesFilePathWidget_h