Line | |
---|
1 | using HeuristicLab.Persistence.Interfaces;
|
---|
2 |
|
---|
3 | namespace 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.