ICE 3.4.2
[php5-ice-freebsdport.git] / cpp / demo / book / map_filesystem / FilesystemDB.ice
blobef250c35b003145c82cbf9478ce1e70217087615
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
10 #include <Filesystem.ice>
11 #include <Ice/Identity.ice>
13 module FilesystemDB
15     struct FileEntry
16     {
17         string name;
18         Ice::Identity parent;
19         Filesystem::Lines text;
20     };
22     dictionary<string, Filesystem::NodeDesc> StringNodeDescDict;
23     struct DirectoryEntry
24     {
25         string name;
26         Ice::Identity parent;
27         StringNodeDescDict nodes;
28     };