Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/10 02:43:21 (14 years ago)
Author:
swagner
Message:

Added storable constructors in HeuristicLab.Persistence plugin (#922)

File:
1 edited

Legend:

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

    r3743 r4806  
    3737    /// <value>The format's name.</value>
    3838    public abstract string Name { get; }
    39    
     39
    4040    /// <summary>
    4141    /// Datatype that describes the atoms used for serialization serialization.
    4242    /// </summary>
    4343    public Type SerialDataType { get { return typeof(SerialDataFormat); } }
     44
     45    [StorableConstructor]
     46    protected FormatBase(bool deserializing) { }
     47    protected FormatBase() { }
    4448
    4549    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.