Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/09 12:40:41 (15 years ago)
Author:
epitzer
Message:

Stronger typing for formatters with the help of generics. Separate format and serial data type. (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Core/Tokens/PrimitiveToken.cs

    r1556 r1564  
    66    public readonly int TypeId;
    77    public readonly int? Id;
    8     public readonly object SerialData;
    9     public PrimitiveToken(string name, int typeId, int? id, object serialData)
     8    public readonly ISerialData SerialData;
     9    public PrimitiveToken(string name, int typeId, int? id, ISerialData serialData)
    1010      : base(name) {
    1111      TypeId = typeId;
Note: See TracChangeset for help on using the changeset viewer.