20 lines
368 B
C++
20 lines
368 B
C++
#ifndef SNAVERBLOGEFFECT
|
|
#define SNAVERBLOGEFFECT
|
|
#include "seffectprocess.h"
|
|
#include <memory>
|
|
#include <QWebPage>
|
|
#include "sresultsender.h"
|
|
|
|
class SNaverBlogEffectProcess: public SEffectProcess
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
std::shared_ptr<QWebPage> m_pWebPage;
|
|
std::shared_ptr<SResultSender> m_pResultSender;
|
|
|
|
};
|
|
|
|
#endif // SNAVERBLOGEFFECT
|
|
|