From 5e69673563dd72f23dabc1f6d86ad684710b23bb Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Sat, 2 Jun 2018 19:44:09 -0700 Subject: Initial Revision. --- src/Uri.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Uri.cpp (limited to 'src') 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 + +namespace Uri { + /** + * This contains the private properties of a Uri instance. + */ + struct Uri::Impl { + }; + + Uri::~Uri() = default; + + Uri::Uri() + : impl_(new Impl) + { + } + +} -- cgit v1.2.3