From 5e69673563dd72f23dabc1f6d86ad684710b23bb Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Sat, 2 Jun 2018 19:44:09 -0700 Subject: Initial Revision. --- include/Uri/Uri.hpp | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 include/Uri/Uri.hpp (limited to 'include/Uri') diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp new file mode 100644 index 0000000..b5f85c2 --- /dev/null +++ b/include/Uri/Uri.hpp @@ -0,0 +1,53 @@ +#ifndef URI_HPP +#define URI_HPP + +/** + * @file Uri.hpp + * + * This module declares the Uri::Uri class. + * + * © 2018 by Richard Walters + */ + +#include + +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 */ -- cgit v1.2.3