internal StorageObject(
                MemoryStorageGraph graph,
                StorageObjectID id
                )
            {
                this.graph = graph;
                this.id    = id;

                filedata          = new MemoryFile();
                filedata.Written += Filedata_Written;
            }
Beispiel #2
0
 public RootMemoryStorageObject(MemoryStorageGraph graph)
 {
     this.graph = graph;
 }