#include <QtNetwork/qftp.h>
#ifndef QFTP_H
#ifndef QT_NO_FTP
class QFtp: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum Command{
      None = 0,
      SetTransferMode = 1,
      SetProxy = 2,
      ConnectToHost = 3,
      Login = 4,
      Close = 5,
      List = 6,
      Cd = 7,
      Get = 8,
      Put = 9,
      Remove = 10,
      Mkdir = 11,
      Rmdir = 12,
      Rename = 13,
      RawCommand = 14,
   };
   /* ... */
};
#endif // QT_NO_FTP
#endif // QFTP_H