Last change
on this file since 4498 was
1823,
checked in by epitzer, 16 years ago
|
Namespace refactoring: rename formatters & decomposers -> primitive and composite serializers. (#603)
|
File size:
554 bytes
|
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 | 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.