mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 18:28:35 +12:00
20 lines
275 B
C++
20 lines
275 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#ifndef CURL_STATICLIB
|
|
#define CURL_STATICLIB
|
|
#endif
|
|
#include <curl/curl.h>
|
|
|
|
class curl_handle : public QObject
|
|
{
|
|
private:
|
|
CURL* m_curl = nullptr;
|
|
|
|
public:
|
|
curl_handle(QObject* parent = nullptr);
|
|
~curl_handle();
|
|
|
|
CURL* get_curl();
|
|
};
|