Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Persistence Test/HeuristicLab.Persistence/3.3/Default/DebugString/DebugString.cs @ 2515

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

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

File size: 554 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  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.