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/Collections/FromToCollection.cs @ 2769

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

added unused files for netron (ticket #867)

File size: 629 bytes
Line 
1using System;
2using System.Collections;
3
4namespace Netron.GraphLib.IO.NML
5{
6  /// <summary>
7  /// STC of FromTo collection, related to deserailization of connections
8  /// </summary>
9  public class FromToCollection : CollectionBase
10  {   
11    /// <summary>
12    /// integer indexer
13    /// </summary>
14    public FromTo this[int index]
15    {
16      get{return (FromTo) this.InnerList[index] ;}
17    }
18
19    /// <summary>
20    /// Adds an item to the collection
21    /// </summary>
22    /// <param name="ft">a ParentChild object</param>
23    /// <returns></returns>
24    public int Add(FromTo ft)
25    {
26      return this.InnerList.Add(ft);
27    }
28  }
29}
Note: See TracBrowser for help on using the repository browser.