- 트위터, 유튜브 추가
This commit is contained in:
30
CrawlerList/stwitterusermanage.h
Normal file
30
CrawlerList/stwitterusermanage.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef STWITTERUSERMANAGE_H
|
||||
#define STWITTERUSERMANAGE_H
|
||||
#include "smanage.h"
|
||||
|
||||
class STwitterUserManage : public SManage
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
enum E_PROCESS_STATE
|
||||
{
|
||||
E_PROCESS_RUN = 0,
|
||||
E_PROCESS_FINISH_WAIT,
|
||||
};
|
||||
STwitterUserManage(QObject *pObject);
|
||||
private:
|
||||
QString makeGetListQuery(QString _str,QDate _date,int _nPage);
|
||||
private:
|
||||
QString m_strListQuery;
|
||||
QVector <QString> m_strListURL;
|
||||
protected:
|
||||
bool Update();
|
||||
void Start();
|
||||
void processFinished(QProcess *pPro,QString _strOut);
|
||||
void ReLoadList();
|
||||
private slots:
|
||||
void readStandardOutput();
|
||||
void readStandardError();
|
||||
};
|
||||
#endif // STWITTERUSERMANAGE_H
|
||||
|
||||
Reference in New Issue
Block a user