Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3016 was 3016, checked in by epitzer, 14 years ago

Update API docs. (#548)

File size: 496 bytes
Line 
1using HeuristicLab.Persistence.Interfaces;
2using HeuristicLab.Persistence.Core;
3using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
5namespace HeuristicLab.Persistence.Default.Xml {
6
7  /// <summary>
8  /// A simple XML format, that can be used to either stream
9  /// or save to a file.
10  /// </summary>
11  [StorableClass(StorableClassType.Empty)]
12  public class XmlFormat : FormatBase<XmlString> {
13    public override string Name { get { return "XML"; } }
14  }
15
16}
Note: See TracBrowser for help on using the repository browser.