Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/DebugStringFormat.cs @ 3002

Last change on this file since 3002 was 2994, checked in by epitzer, 15 years ago

Make StorableClass attribute compulsory for StorableSerializer to work, add named property StorableClassType to choose between Empty and MarkedOnly, later other options will be added. (#548)

File size: 561 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using HeuristicLab.Persistence.Interfaces;
5using HeuristicLab.Persistence.Default.Xml;
6using HeuristicLab.Persistence.Core;
7using HeuristicLab.Persistence.Core.Tokens;
8using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
9
10namespace HeuristicLab.Persistence.Default.DebugString {
11
12  [StorableClass(StorableClassType.Empty)]
13  public class DebugStringFormat : FormatBase<DebugString> {
14    public override string Name { get { return "DebugString"; } }
15  }
16
17}
Note: See TracBrowser for help on using the repository browser.