Last change
on this file since 1688 was
1659,
checked in by epitzer, 16 years ago
|
Add missing attributes and create type hierarchy for formatters. (#548)
|
File size:
545 bytes
|
Rev | Line | |
---|
[1567] | 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;
|
---|
[1659] | 8 | using HeuristicLab.Persistence.Default.Decomposers.Storable;
|
---|
[1567] | 9 |
|
---|
| 10 | namespace HeuristicLab.Persistence.Default.DebugString {
|
---|
[1659] | 11 |
|
---|
| 12 | public class DebugString : ISerialData {
|
---|
[1567] | 13 |
|
---|
[1659] | 14 | [Storable]
|
---|
[1567] | 15 | public string Data { get; set; }
|
---|
[1659] | 16 |
|
---|
[1567] | 17 | public DebugString(string s) {
|
---|
| 18 | Data = s;
|
---|
| 19 | }
|
---|
[1659] | 20 |
|
---|
[1567] | 21 | }
|
---|
| 22 |
|
---|
| 23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.