summaryrefslogtreecommitdiff
path: root/src/libcrawler/URL.pkg
blob: d27288dd4110694fe80eddeb25d18e03c524d5ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$#include "URL.hpp"

$using namespace std;

class URL
{
	URL( ) {}
		
	URL( const URL& url ) {}
		
	URL( const std::string _protocol, const std::string _host, const unsigned short _port, const std::string _path, const std::string _query, const std::string _fragment ) {}
				
	const string protocol( ) const {}
		
	const string host( ) const {}
				
	unsigned short port( ) const {}
		
	const string path( ) const {}
		
	const string query( ) const {}
		
	std::string fragment( ) const {}
		
	std::string str( ) const {}
		
	static URL Null;
	
	bool operator==( const URL &other ) const {}
	
	bool operator<( const URL &other ) const {}
};