diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-06-02 19:44:09 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-06-02 19:44:09 -0700 |
commit | 5e69673563dd72f23dabc1f6d86ad684710b23bb (patch) | |
tree | 43471032352a770c7d7eb4aff05a8c00c37d9184 /src/Uri.cpp |
Initial Revision.
Diffstat (limited to 'src/Uri.cpp')
-rw-r--r-- | src/Uri.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Uri.cpp b/src/Uri.cpp new file mode 100644 index 0000000..d63a5a9 --- /dev/null +++ b/src/Uri.cpp @@ -0,0 +1,25 @@ +/** + * @file Uri.cpp + * + * This module contains the implementation of the Uri::Uri class. + * + * © 2018 by Richard Walters + */ + +#include <Uri/Uri.hpp> + +namespace Uri { + /** + * This contains the private properties of a Uri instance. + */ + struct Uri::Impl { + }; + + Uri::~Uri() = default; + + Uri::Uri() + : impl_(new Impl) + { + } + +} |