mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
18 lines
376 B
C++
18 lines
376 B
C++
#ifndef __cmCursesPathWidget_h
|
|
#define __cmCursesPathWidget_h
|
|
|
|
#include "cmCursesStringWidget.h"
|
|
|
|
class cmCursesPathWidget : public cmCursesStringWidget
|
|
{
|
|
public:
|
|
cmCursesPathWidget(int width, int height, int left, int top);
|
|
|
|
protected:
|
|
cmCursesPathWidget(const cmCursesPathWidget& from);
|
|
void operator=(const cmCursesPathWidget&);
|
|
|
|
};
|
|
|
|
#endif // __cmCursesPathWidget_h
|