Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Data/3.3/ValueTypeMatrix.cs

    r14672 r14927  
    2828using HeuristicLab.Common;
    2929using HeuristicLab.Core;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Persistence;
    3131
    3232namespace HeuristicLab.Data {
    3333  [Item("ValueTypeMatrix", "An abstract base class for representing matrices of value types.")]
    34   [StorableClass]
     34  [StorableType("429de92f-728d-4711-ae3c-422f9a6c9951")]
    3535  public abstract class ValueTypeMatrix<T> : Item, IEnumerable<T> where T : struct {
    3636    private const int maximumToStringLength = 100;
     
    195195    }
    196196
    197    
     197
    198198    public T[,] CloneAsMatrix() {
    199199      //mkommend: this works because T must be a value type (struct constraint);
Note: See TracChangeset for help on using the changeset viewer.