From f0fb6aeab118255266370121db79ab2a2fed88ad Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 13 Sep 2009 18:41:38 +0200 Subject: Add the fs::basic_path class --- cutl/fs/path.cxx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cutl/fs/path.cxx (limited to 'cutl/fs/path.cxx') diff --git a/cutl/fs/path.cxx b/cutl/fs/path.cxx new file mode 100644 index 0000000..6e295c6 --- /dev/null +++ b/cutl/fs/path.cxx @@ -0,0 +1,18 @@ +// file : cutl/fs/path.cxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#include + +namespace cutl +{ + namespace fs + { + char const* invalid_path:: + what () const throw () + { + return "invalid filesystem path"; + } + } +} -- cgit v1.1