13 lines
168 B
C++
13 lines
168 B
C++
#ifndef TEXTINPUTFORM_H
|
|
#define TEXTINPUTFORM_H
|
|
|
|
#include <QDialog>
|
|
|
|
class TextInputForm : public QDialog
|
|
{
|
|
public:
|
|
TextInputForm();
|
|
};
|
|
|
|
#endif // TEXTINPUTFORM_H
|