source:
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/INodeList.cs
@
13918
Last change on this file since 13918 was 12762, checked in by aballeit, 9 years ago | |
---|---|
File size: 246 bytes |
Line | |
---|---|
1 | using System; |
2 | |
3 | namespace SharpVectors.Dom |
4 | { |
5 | /// <summary> |
6 | /// Summary description for INodeList. |
7 | /// </summary> |
8 | public interface INodeList |
9 | { |
10 | INode this[ulong index] |
11 | { |
12 | get; |
13 | } |
14 | |
15 | ulong Count |
16 | { |
17 | get; |
18 | } |
19 | } |
20 | } |
Note: See TracBrowser
for help on using the repository browser.