blob: b5f85c20569a54577e240e75ae4e648f55604db7 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef URI_HPP
#define URI_HPP
/**
* @file Uri.hpp
*
* This module declares the Uri::Uri class.
*
* © 2018 by Richard Walters
*/
#include <memory>
namespace Uri {
/**
* This class represents a Uniform Resource Identifier (URI),
* as defined in RFC 3986 (https://tools.ietf.org/html/rfc3986).
*/
class Uri {
// Lifecycle management
public:
~Uri();
Uri(const Uri&) = delete;
Uri(Uri&&) = delete;
Uri& operator=(const Uri&) = delete;
Uri& operator=(Uri&&) = delete;
// Public methods
public:
/**
* This is the default constructor.
*/
Uri();
// Private properties
private:
/**
* This is the type of structure that contains the private
* properties of the instance. It is defined in the implementation
* and declared here to ensure that it is scoped inside the class.
*/
struct Impl;
/**
* This contains the private properties of the instance.
*/
std::unique_ptr< struct Impl > impl_;
};
}
#endif /* URI_HPP */
|