diff options
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) + { + } + +} |