Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/09 16:59:33 (15 years ago)
Author:
epitzer
Message:

Add empty storable class attributes to classes (#506)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/New Persistence Exploration/Persistence/Persistence/Default/Xml/XmlFormat.cs

    r1361 r1405  
    11using HeuristicLab.Persistence.Interfaces;
     2using HeuristicLab.Persistence.Core;
    23
    34namespace HeuristicLab.Persistence.Default.Xml {
    45
    5   public class XmlFormat : IFormat {
    6     public string Name { get { return "XML"; } }
     6  [EmptyStorableClass]
     7  public class XmlFormat : Format {
     8    public override string Name { get { return "XML"; } }
    79    public static readonly XmlFormat Instance = new XmlFormat();
    810  }
Note: See TracChangeset for help on using the changeset viewer.