FilterProcess -> Legacy_FilterProcess로 변경 sfilterprocess -> FilterProcess로 변경 git-svn-id: svn://192.168.0.12/source@316 8346c931-da38-4b9b-9d4c-e48b93cbd075
24 lines
731 B
C++
24 lines
731 B
C++
#ifndef SFILTERALGORITHM
|
|
#define SFILTERALGORITHM
|
|
#include <QVector>
|
|
#include "../common.h"
|
|
class QString;
|
|
class QStringList;
|
|
class SFilterAlgorithm
|
|
{
|
|
private:
|
|
QVector <SKeyword> m_vecKeyword;
|
|
public:
|
|
void FilterSearch(QVector<QStringList> *m_data, bool *m_bDataFlag, QString _strJson);
|
|
void FilterCounter(QVector<QStringList> *m_data, bool *m_bDataFlag, QString _strJson);
|
|
void FilterReplace(QVector<QStringList> *m_data, bool *m_bDataFlag, QString _strJson);
|
|
void FilterDate(QVector<QStringList> *m_data, bool *m_bDataFlag, QString _strJson, int _nDateColumn);
|
|
void FilterLength(QVector<QStringList> *m_data, bool *m_bDataFlag, QString _strJson);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SFILTERALGORITHM
|
|
|