Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Core/Tokens/EndToken.cs @ 3036

Last change on this file since 3036 was 3016, checked in by epitzer, 14 years ago

Update API docs. (#548)

File size: 581 bytes
Line 
1using HeuristicLab.Persistence.Interfaces;
2
3namespace HeuristicLab.Persistence.Core.Tokens {
4
5  /// <summary>
6  /// Marks the end of a composite element.
7  /// </summary>
8  public class EndToken : CompositeTokenBase {
9
10    /// <summary>
11    /// Initializes a new instance of the <see cref="EndToken"/> class.
12    /// </summary>
13    /// <param name="name">The name.</param>
14    /// <param name="typeId">The type id.</param>
15    /// <param name="id">The object id.</param>
16    public EndToken(string name, int typeId, int? id) : base(name, typeId, id) { }
17  }
18
19}
Note: See TracBrowser for help on using the repository browser.