mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-09 02:01:07 +01:00
21 lines
275 B
C++
21 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();
|
|
};
|