Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Char2DebugStringFormatter.cs @ 1652

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

Implement missing primitive formatter for char and add more comprehensive tests. (#548)

File size: 498 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.Decomposers.Storable;
9
10namespace HeuristicLab.Persistence.Default.DebugString.Formatters {
11
12  [EmptyStorableClass]
13  public class Char2DebugStringFormatter : ValueType2DebugStringFormatterBase<char> { }
14
15}
Note: See TracBrowser for help on using the repository browser.