Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Source/CursesDialog/cmCursesFilePathWidget.h
5015 views
1
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
2
file LICENSE.rst or https://cmake.org/licensing for details. */
3
#pragma once
4
5
#include "cmConfigure.h" // IWYU pragma: keep
6
7
#include "cmCursesPathWidget.h"
8
9
class cmCursesFilePathWidget : public cmCursesPathWidget
10
{
11
public:
12
cmCursesFilePathWidget(int width, int height, int left, int top);
13
14
cmCursesFilePathWidget(cmCursesFilePathWidget const&) = delete;
15
cmCursesFilePathWidget& operator=(cmCursesFilePathWidget const&) = delete;
16
};
17
18