cmCursesFilePathWidget.h 512 B

123456789101112131415161718
  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. CM_DISABLE_COPY(cmCursesFilePathWidget)
  10. public:
  11. cmCursesFilePathWidget(int width, int height, int left, int top);
  12. };
  13. #endif // cmCursesFilePathWidget_h