|
DuxReiNummariae 1.1.0-alpha.19
Simple and powerful budgeting application
|
Interface for sending network requests. When deriving, it'll provide methods for sending various network requests. More...
#include <RequestSender.hpp>
Public Member Functions | |
| RequestSender (const foundation::QtPtr< QObject > &parent) | |
| Fully initialises the object with a specified parent. | |
| virtual foundation::UniqueQtPtr< ReplyResponse > | get (const QNetworkRequest &request)=0 |
| When implemented, sends a GET request to the specified network address. | |
Interface for sending network requests. When deriving, it'll provide methods for sending various network requests.
|
explicit |
Fully initialises the object with a specified parent.
| parent | The parent used to manage the memory and lifecycle of this instance, and ensuring it follows the Qt object hierarchy. |
|
pure virtual |
When implemented, sends a GET request to the specified network address.
| request | The network request to be sent. It should contain all necessary information such as the URL and any required headers. |
Implemented in drn::networking::QtRequestSender.