13 lines
320 B
C++
13 lines
320 B
C++
#include <filesystem>
|
|
#include <string>
|
|
namespace fs = std::filesystem;
|
|
using path = fs::path;
|
|
|
|
int transfer_files(path directory);
|
|
bool isClientTransferDone();
|
|
bool isClientTransferCancelled();
|
|
bool isClientConnectionFailed();
|
|
void cancelClientTransfer();
|
|
double getClientProgress();
|
|
std::string getClientStatusText();
|