Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using HeuristicLab.Persistence.Interfaces;
|
---|
5 | using HeuristicLab.Persistence.Default.Xml;
|
---|
6 | using HeuristicLab.Persistence.Core;
|
---|
7 | using HeuristicLab.Persistence.Core.Tokens;
|
---|
8 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
9 |
|
---|
10 | namespace 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.