26 lines
607 B
C++
26 lines
607 B
C++
#ifndef SNAVERBLOGPROCESS
|
|
#define SNAVERBLOGPROCESS
|
|
|
|
#include "seffectprocess.h"
|
|
#include "snaverblog.h"
|
|
|
|
class SNaverBlogProcess: public SEffectProcess
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SNaverBlogProcess(const QString& _platform_name, const QString& _platform_form,
|
|
const QString& _event_code, const QString& _url, const QString& _startdate);
|
|
void run(const QString& _url) override;
|
|
|
|
protected:
|
|
virtual State_s1_effect processData(const EffectData& _data) override;
|
|
|
|
private:
|
|
std::unique_ptr<SNaverBlog> m_pSNaverBlog;
|
|
|
|
};
|
|
|
|
#endif // SNAVERBLOGPROCESS
|
|
|