aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/path.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-09-13 18:41:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-09-13 18:41:38 +0200
commitf0fb6aeab118255266370121db79ab2a2fed88ad (patch)
tree25deca2aaf0ce2cf468f6d1253b075758ddf926e /cutl/fs/path.cxx
parent29c8ce737f513766673fd3e57e30233d9fcce159 (diff)
Add the fs::basic_path class
Diffstat (limited to 'cutl/fs/path.cxx')
-rw-r--r--cutl/fs/path.cxx18
1 files changed, 18 insertions, 0 deletions
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 <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include <cutl/fs/path.hxx>
+
+namespace cutl
+{
+ namespace fs
+ {
+ char const* invalid_path::
+ what () const throw ()
+ {
+ return "invalid filesystem path";
+ }
+ }
+}