blob: a1f9b2333f8b94486c96109ee5d8168c3ddb9027 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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
|