mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
30 lines
577 B
C++
Executable File
30 lines
577 B
C++
Executable File
#ifndef SDK_CXX_MEMBERINFOGETREQUEST_HPP
|
|
#define SDK_CXX_MEMBERINFOGETREQUEST_HPP
|
|
|
|
#include <string>
|
|
#include "BaseRequest.h"
|
|
|
|
using namespace std;
|
|
|
|
class MemberInfoGetRequest : public BaseRequest {
|
|
|
|
public:
|
|
string getMethod() override;
|
|
string getVersion() override;
|
|
RequestType getRequestType() override;
|
|
};
|
|
|
|
string MemberInfoGetRequest::getMethod() {
|
|
return "member.info.get";
|
|
}
|
|
|
|
string MemberInfoGetRequest::getVersion() {
|
|
return "1.0";
|
|
}
|
|
|
|
RequestType MemberInfoGetRequest::getRequestType() {
|
|
return GET;
|
|
}
|
|
|
|
#endif //SDK_CXX_MEMBERINFOGETREQUEST_HPP
|