16 lines
265 B
C
16 lines
265 B
C
|
#ifndef TEXTFIELDEXAMPLES_H
|
||
|
#define TEXTFIELDEXAMPLES_H
|
||
|
|
||
|
#include "examplelist.h"
|
||
|
|
||
|
class TextFieldExamples : public ExampleList
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit TextFieldExamples(QWidget *parent = 0);
|
||
|
~TextFieldExamples();
|
||
|
};
|
||
|
|
||
|
#endif // TEXTFIELDEXAMPLES_H
|