diff options
Diffstat (limited to 'netfs/fuse/fuseConfigImpl.cpp')
-rw-r--r-- | netfs/fuse/fuseConfigImpl.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/netfs/fuse/fuseConfigImpl.cpp b/netfs/fuse/fuseConfigImpl.cpp new file mode 100644 index 0000000..9129bfc --- /dev/null +++ b/netfs/fuse/fuseConfigImpl.cpp @@ -0,0 +1,10 @@ +#include <fuseConfig.h> +#include <compileTimeFormatter.h> + +AdHocFormatter(ResourceNotFoundMsg, "No such resource: %?"); +void +NetFS::Client::ResourceNotFound::ice_print(std::ostream & s) const +{ + ResourceNotFoundMsg::write(s, resourceName); +} + |