blob: 7c8268bd4e9c33641c292317e036cc4c7130e34e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __cmCursesFilePathWidget_h
#define __cmCursesFilePathWidget_h
#include "cmCursesStringWidget.h"
class cmCursesFilePathWidget : public cmCursesStringWidget
{
public:
cmCursesFilePathWidget(int width, int height, int left, int top);
protected:
cmCursesFilePathWidget(const cmCursesFilePathWidget& from);
void operator=(const cmCursesFilePathWidget&);
};
#endif // __cmCursesFilePathWidget_h
|