형태소분석기 숫자 정렬 추가 batch run 시 결과값이 올바르게 나오지 않는 현상 디버깅 git-svn-id: svn://192.168.0.12/source@297 8346c931-da38-4b9b-9d4c-e48b93cbd075
19 lines
482 B
C++
19 lines
482 B
C++
#ifndef SUTILCLASS
|
|
#define SUTILCLASS
|
|
|
|
#include <QTableWidgetItem>
|
|
|
|
class STableWidgetItem : public QTableWidgetItem
|
|
{
|
|
public:
|
|
STableWidgetItem(int type = Type);
|
|
STableWidgetItem(const QString & text, int type = Type);
|
|
STableWidgetItem(const QIcon & icon, const QString & text, int type = Type);
|
|
STableWidgetItem(const STableWidgetItem & other);
|
|
virtual bool operator<(const QTableWidgetItem & other) const override;
|
|
};
|
|
|
|
|
|
#endif // SUTILCLASS
|
|
|