Free cookie consent management tool by TermsFeed Policy Generator

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

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

Add missing attributes and create type hierarchy for formatters. (#548)

File size: 545 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 {
11 
12  public class DebugString : ISerialData {
13
14    [Storable]
15    public string Data { get; set; }
16
17    public DebugString(string s) {
18      Data = s;
19    }
20
21  }
22
23}
Note: See TracBrowser for help on using the repository browser.