Last change
on this file since 3188 was
3036,
checked in by epitzer, 15 years ago
|
make most serializers internal and complete API documentation (#548)
|
File size:
742 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 | /// <summary>
|
---|
13 | /// Simple write-only format for debugging purposes.
|
---|
14 | /// </summary>
|
---|
15 | [StorableClass]
|
---|
16 | public class DebugStringFormat : FormatBase<DebugString> {
|
---|
17 | /// <summary>
|
---|
18 | /// Gets the format's name.
|
---|
19 | /// </summary>
|
---|
20 | /// <value>The format's name.</value>
|
---|
21 | public override string Name { get { return "DebugString"; } }
|
---|
22 | }
|
---|
23 |
|
---|
24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.