Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlFormat.cs @ 1530

Last change on this file since 1530 was 1454, checked in by epitzer, 15 years ago

merge persistence exploration branch into trunk as HL plugin. (#506)

File size: 333 bytes
Line 
1using HeuristicLab.Persistence.Interfaces;
2using HeuristicLab.Persistence.Core;
3
4namespace HeuristicLab.Persistence.Default.Xml {
5
6  [EmptyStorableClass]
7  public class XmlFormat : Format {
8    public override string Name { get { return "XML"; } }
9    public static readonly XmlFormat Instance = new XmlFormat();
10  }
11
12}
Note: See TracBrowser for help on using the repository browser.