X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/a4221092e50af0b74040f5b4ee800c78b05fd84e..af859f09084b4f6163501f216ba8cc2356fb3f93:/methods/ftp.h diff --git a/methods/ftp.h b/methods/ftp.h index 2efd28ec6..de2c232bd 100644 --- a/methods/ftp.h +++ b/methods/ftp.h @@ -10,8 +10,11 @@ #ifndef APT_FTP_H #define APT_FTP_H +#include #include +#include "aptmethod.h" +#include #include #include #include @@ -65,14 +68,14 @@ class FTPConn Hashes &MD5,bool &Missing, unsigned long long MaximumSize, pkgAcqMethod *Owner); - FTPConn(URI Srv); + explicit FTPConn(URI Srv); ~FTPConn(); }; -class FtpMethod : public pkgAcqMethod +class FtpMethod : public aptMethod { - virtual bool Fetch(FetchItem *Itm); - virtual bool Configuration(std::string Message); + virtual bool Fetch(FetchItem *Itm) APT_OVERRIDE; + virtual bool Configuration(std::string Message) APT_OVERRIDE; FTPConn *Server;