Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/10 02:48:19 (14 years ago)
Author:
swagner
Message:

Fixed persistence exceptions by restoring the reference on HeuristicLab.Persistence in HeuristicLab.Collections (#977)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/ObservableList.cs

    r3390 r3560  
    2424using System.Collections.Generic;
    2525using System.ComponentModel;
     26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2627
    2728namespace HeuristicLab.Collections {
     29  [StorableClass]
    2830  [Serializable]
    2931  public class ObservableList<T> : IObservableList<T> {
     32    [Storable]
    3033    protected List<T> list;
    3134
     
    7275      list = new List<T>(collection);
    7376    }
     77    [StorableConstructor]
     78    protected ObservableList(bool deserializing) { }
    7479    #endregion
    7580
Note: See TracChangeset for help on using the changeset viewer.