14 lines
226 B
C++
14 lines
226 B
C++
#ifndef EZ_DIRECT_HOST_H
|
|
#define EZ_DIRECT_HOST_H
|
|
|
|
#include "filehost.h"
|
|
|
|
class DirectHost : public FileHost
|
|
{
|
|
public:
|
|
DirectHost(const std::string &url);
|
|
bool IsValidUrl();
|
|
std::string GetDownloadUrl();
|
|
};
|
|
|
|
#endif |