41 lines
706 B
C
41 lines
706 B
C
![]() |
#ifndef ZONGJUNLUO_H
|
||
|
#define ZONGJUNLUO_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "bachistoricalrecords.h"
|
||
|
#include "bacteria.h"
|
||
|
#include "cammer.h"
|
||
|
namespace Ui {
|
||
|
class zongjunluo;
|
||
|
}
|
||
|
|
||
|
class zongjunluo : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit zongjunluo(QWidget *parent = nullptr);
|
||
|
~zongjunluo();
|
||
|
|
||
|
private slots:
|
||
|
void on_radioButton_clicked();
|
||
|
|
||
|
void on_radioButton_2_clicked();
|
||
|
void getxinhao(QString p);
|
||
|
private:
|
||
|
Ui::zongjunluo *ui;
|
||
|
bacteria *m_junluo;
|
||
|
bachistoricalrecords *m_junjilu;
|
||
|
cammer m_cammer;
|
||
|
signals:
|
||
|
void guan();
|
||
|
void kai();
|
||
|
void guan2();
|
||
|
void xinhao(QString p);
|
||
|
public slots:
|
||
|
void getguan();
|
||
|
void getkai();
|
||
|
};
|
||
|
|
||
|
#endif // ZONGJUNLUO_H
|