Last change
on this file since 2227 was
1823,
checked in by epitzer, 16 years ago
|
Namespace refactoring: rename formatters & decomposers -> primitive and composite serializers. (#603)
|
File size:
541 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;
|
---|
[1823] | 8 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[1567] | 9 |
|
---|
| 10 | namespace HeuristicLab.Persistence.Default.DebugString {
|
---|
| 11 |
|
---|
[1659] | 12 | [EmptyStorableClass]
|
---|
[1567] | 13 | public class DebugStringFormat : FormatBase<DebugString> {
|
---|
[1659] | 14 | public override string Name { get { return "DebugString"; } }
|
---|
[1567] | 15 | }
|
---|
| 16 |
|
---|
| 17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.