Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/IO/NML/INMLCollection.cs @ 3757

Last change on this file since 3757 was 2769, checked in by mkommend, 14 years ago

added unused files for netron (ticket #867)

File size: 282 bytes
Line 
1using System;
2
3namespace Netron.GraphLib.IO.NML
4{
5  /// <summary>
6  /// Helps (de)serialize custom collections in shapes.
7  /// </summary>
8  public interface INMLCollection
9  {
10    public INMLCollection()
11    {
12      string WriteXml();
13      void ReadXml(string content);
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.