#include <QtCore/qurl.h>
#ifndef QURL_H
class QUrl{
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