컨슈머 마케터/즐겨찾기 업데이트 git-svn-id: svn://192.168.0.12/source@282 8346c931-da38-4b9b-9d4c-e48b93cbd075
39 lines
829 B
C++
39 lines
829 B
C++
#ifndef SFILTERPROCESS
|
|
#define SFILTERPROCESS
|
|
#include "sinitializer.h"
|
|
#include "sdatagroup.h"
|
|
#include "sconsumer.h"
|
|
#include "sinfluencer.h"
|
|
#include "sspammer.h"
|
|
#include "spowercafe.h"
|
|
class QString;
|
|
|
|
class SFilterProcess
|
|
{
|
|
private:
|
|
SInitializer m_SInitializer;
|
|
SDatagroup m_SDatagroup;
|
|
SConsumer m_SConsumer;
|
|
SInfluencer m_SInfluencer;
|
|
SSpammer m_SSpammer;
|
|
SPowercafe m_SPowercafe;
|
|
SConsumerMarketer m_SConsumerMarketer;
|
|
SConsumerCheckList m_SConsumerCheckList;
|
|
|
|
public:
|
|
enum E_SERVICE
|
|
{
|
|
E_SERVICE_INFLUENCER = 1,
|
|
E_SERVICE_CONSUMER,
|
|
E_SERVICE_SPAMMER,
|
|
E_SERVICE_POWERCAFE
|
|
};
|
|
|
|
bool init(QString _strFilterProcessGroupID, QString _strFilterProcessGroupName);
|
|
bool run();
|
|
|
|
};
|
|
|
|
#endif // SFILTERPROCESS
|
|
|