27 lines
540 B
C++
27 lines
540 B
C++
#ifndef SINFLUENCERINTERACTORURLMAKER_H
|
|
#define SINFLUENCERINTERACTORURLMAKER_H
|
|
|
|
#include <QString>
|
|
#include "sdatagroup.h"
|
|
|
|
class SInfluencerInteractorUrlMaker
|
|
{
|
|
private:
|
|
static const QString m_strNaverBlogBaseUrl;
|
|
static const QString m_strInstagramBaseUrl;
|
|
static const QString m_strKakaoBaseUrl;
|
|
static const QString m_strFacebookBaseUrl;
|
|
|
|
public:
|
|
static QString makeInfluencerInteractorUrl(const SDatagroup::stReply& _interactorReply);
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SINFLUENCERINTERACTORURLMAKER_H
|