Small edits

This commit is contained in:
Anonymous275
2022-07-22 23:00:25 +03:00
parent c1ed5184e7
commit 16c8f0a052
7 changed files with 8 additions and 6 deletions

17
include/HttpAPI.h Normal file
View File

@@ -0,0 +1,17 @@
///
/// Created by Anonymous275 on 1/17/22
/// Copyright (c) 2021-present Anonymous275 read the LICENSE file for more info.
///
#pragma once
#include <string>
class HTTP {
public:
static bool Download(const std::string &IP, const std::string &Path);
static std::string Post(const std::string& IP, const std::string& Fields);
static std::string Get(const std::string &IP);
static bool ProgressBar(size_t c, size_t t);
public:
static bool isDownload;
};