Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3002 was 3002, checked in by epitzer, 14 years ago

Add missing constructors and hooks (#548)

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