mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
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
|