Files
clients/EffectUI/sutilclass.h
admin 85c47edea3 effectui 추가
형태소분석기 숫자 정렬 추가
batch run 시 결과값이 올바르게 나오지 않는 현상 디버깅

git-svn-id: svn://192.168.0.12/source@297 8346c931-da38-4b9b-9d4c-e48b93cbd075
2016-10-06 07:54:45 +00:00

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