Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/ValueType2DebugStringFormatterBase.cs @ 1612

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

namespace refactoring (#548)

File size: 607 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;
8
9namespace HeuristicLab.Persistence.Default.DebugString.Formatters {
10
11  public abstract class ValueType2DebugStringFormatterBase<T> : FormatterBase<T, DebugString> {
12    public override DebugString Format(T o) { return new DebugString(o.ToString()); }
13    public override T Parse(DebugString s) {
14      throw new NotImplementedException();
15    }
16  }
17}
Note: See TracBrowser for help on using the repository browser.