27 lines
299 B
C++
27 lines
299 B
C++
#ifndef INDEX1_H
|
|
#define INDEX1_H
|
|
|
|
#include <QWidget>
|
|
#include "QFile"
|
|
#include "QTextStream"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
class Index1;
|
|
}
|
|
|
|
class Index1 : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Index1(QWidget *parent = nullptr);
|
|
~Index1();
|
|
|
|
private:
|
|
Ui::Index1 *ui;
|
|
};
|
|
|
|
#endif // INDEX1_H
|