git-svn-id: svn://192.168.0.12/source@179 8346c931-da38-4b9b-9d4c-e48b93cbd075

This commit is contained in:
admin
2015-08-31 09:01:48 +00:00
parent 9b05f4b833
commit bb53c83a7a
16 changed files with 2267 additions and 0 deletions

26
Analyzer/scountdlg.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef SCOUNTDLG_H
#define SCOUNTDLG_H
#include <QDialog>
#include <QTableWidget>
#include <QComboBox>
#include "stable.h"
class SCountDlg : public QDialog
{
Q_OBJECT
public:
SCountDlg();
~SCountDlg();
private slots:
void run();
void graph();
private:
QComboBox *m_pCombo;
STable *m_pTable;
QString m_strGraph;
double m_dTotal;
void setWidgets();
};
#endif // SCOUNTDLG_H