#ifndef __URLNORMALIZER_H #define __URLNORMALIZER_H #include #include "URL.hpp" class URLNormalizer { public: virtual ~URLNormalizer( ) { }; virtual URL parseUrl( const std::string s ) = 0; virtual URL normalize( const URL url, const std::string s ) = 0; }; #endif