2023-11-07 16:53:06 +08:00

25 lines
616 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "httpsender.h"
HttpSender::HttpSender(QObject *parent)
: QObject{parent}
{
Manager=new QNetworkAccessManager;
}
/******************************************************************************
* Copyright 2020-xxxx xxx Co., Ltd.
* All right reserved. See COPYRIGHT for detailed Information.
*zh'g
* @brief 在HttpSender这个类中用Sender向指定的Http地址发送Post,Get请求
*
* @author Teademia
* @date 2023/11/02
* @history 1.0
*****************************************************************************/
void HttpSender::Send(QString AccessToken)
{
}