mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
31 lines
328 B
C++
31 lines
328 B
C++
#ifndef TESTMAIN_H
|
|
#define TESTMAIN_H
|
|
#include <QTabWidget>
|
|
|
|
|
|
#define N1 200
|
|
#define N2 50
|
|
#define N3 8
|
|
|
|
|
|
|
|
|
|
class TestMain : public QTabWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TestMain(QWidget *parent = 0);
|
|
|
|
Q_SIGNALS:
|
|
|
|
public Q_SLOTS:
|
|
|
|
|
|
protected:
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif // TESTMAIN_H
|