#include <QtCore/qurl.h>
#ifndef QURL_H
class QUrl{
   /* Some contents are skipped to improve readability */
   public: enum FormattingOption{
      None = 0,
      RemoveScheme = 1,
      RemovePassword = 2,
      RemoveUserInfo = 6,
      RemovePort = 8,
      RemoveAuthority = 30,
      RemovePath = 32,
      RemoveQuery = 64,
      RemoveFragment = 128,
      StripTrailingSlash = 65536,
   };
   /* ... */
};
#endif // QURL_H