/* * ======================================================== * * hCore * Copyright Mahrouss Logic, all rights reserved. * * ======================================================== */ #ifndef _INC_URL_HPP__ #define _INC_URL_HPP__ #include #include namespace hCore { class Url final { public: explicit Url(StringView &strUrl); ~Url(); public: Ref> Location() noexcept; Ref> Protocol() noexcept; private: Ref m_urlView; }; } // namespace hCore #endif /* ifndef _INC_URL_HPP__ */