diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-10-25 19:40:14 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-12-16 20:39:16 +0000 |
commit | 87fff9d7a08298d20b5783e1fbd92e58b9ce3587 (patch) | |
tree | e8bf3354b3171621601cfa9b4255aafc2b885cef /netfs/fuse | |
parent | Run lto in parallel (diff) | |
download | netfs-87fff9d7a08298d20b5783e1fbd92e58b9ce3587.tar.bz2 netfs-87fff9d7a08298d20b5783e1fbd92e58b9ce3587.tar.xz netfs-87fff9d7a08298d20b5783e1fbd92e58b9ce3587.zip |
Configuration types can be local with modern Slicer
Diffstat (limited to 'netfs/fuse')
-rw-r--r-- | netfs/fuse/fuseConfig.ice | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/netfs/fuse/fuseConfig.ice b/netfs/fuse/fuseConfig.ice index d4cee41..91740fc 100644 --- a/netfs/fuse/fuseConfig.ice +++ b/netfs/fuse/fuseConfig.ice @@ -1,9 +1,9 @@ module NetFS { module Client { ["slicer:element:endpoint"] - sequence<string> EndpointList; + local sequence<string> EndpointList; - class Resource { + local class Resource { ["slicer:name:export"] string ExportName; @@ -18,10 +18,10 @@ module NetFS { }; ["slicer:key:name","slicer:value:resource","slicer:item:resource"] - dictionary<string, Resource> ResourceMap; + local dictionary<string, Resource> ResourceMap; ["slicer:root:config"] - class Configuration { + local class Configuration { ["slicer:name:resources"] ResourceMap Resources; }; |