최신 analyzer + 형태소 분석기 합쳐놓음

git-svn-id: svn://192.168.0.12/source@245 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
admin
2016-01-28 07:14:23 +00:00
parent e0f305bcb6
commit 05b29b75a8
32 changed files with 4026 additions and 1117 deletions

View File

@@ -0,0 +1,29 @@
#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();
void save();
private:
QComboBox *m_pCombo;
STable *m_pTable;
QString m_strGraph;
double m_dTotal;
void setWidgets();
void choose_1();
void choose_2();
};
#endif // SCOUNTDLG_H