2021-01-15 21:07:23 +08:00
|
|
|
#include "qtcommon.h"
|
2020-10-14 08:37:03 +08:00
|
|
|
#include "network.h"
|
|
|
|
|
2021-01-15 21:07:23 +08:00
|
|
|
namespace DevTools
|
|
|
|
{
|
2021-06-05 22:25:46 +08:00
|
|
|
void Start();
|
2021-01-15 21:07:23 +08:00
|
|
|
void Close();
|
|
|
|
bool Connected();
|
2021-03-10 12:32:56 +08:00
|
|
|
JSON::Value<wchar_t> SendRequest(const char* method, const std::wstring& params = L"{}");
|
2021-01-15 21:07:23 +08:00
|
|
|
}
|