Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2227 was 1823, checked in by epitzer, 16 years ago

Namespace refactoring: rename formatters & decomposers -> primitive and composite serializers. (#603)

File size: 541 bytes
RevLine 
[1567]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;
[1823]8using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[1567]9
10namespace HeuristicLab.Persistence.Default.DebugString {
11
[1659]12  [EmptyStorableClass]
[1567]13  public class DebugStringFormat : FormatBase<DebugString> {
[1659]14    public override string Name { get { return "DebugString"; } }
[1567]15  }
16
17}
Note: See TracBrowser for help on using the repository browser.