Last change
on this file since 2491 was
1562,
checked in by epitzer, 16 years ago
|
Stricter requirements for IDs in serialization tokens. (#548)
|
File size:
333 bytes
|
Line | |
---|
1 |
|
---|
2 | namespace HeuristicLab.Persistence.Core.Tokens {
|
---|
3 |
|
---|
4 | public abstract class CompositeTokenBase : SerializationTokenBase {
|
---|
5 | public readonly int TypeId;
|
---|
6 | public readonly int? Id;
|
---|
7 | public CompositeTokenBase(string name, int typeId, int? id)
|
---|
8 | : base(name) {
|
---|
9 | TypeId = typeId;
|
---|
10 | Id = id;
|
---|
11 | }
|
---|
12 | }
|
---|
13 |
|
---|
14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.