how-to-use/cpp/demo/net/main.cpp

9 lines
183 B
C++

#include <iostream>
#include "multi_thread_down.h"
int main(int argc, const char* argv[])
{
CThreadDownload downloader;
downloader.download(argv[1], argv[2]);
return 0;
}