Last change
on this file since 1823 was
1823,
checked in by epitzer, 15 years ago
|
Namespace refactoring: rename formatters & decomposers -> primitive and composite serializers. (#603)
|
File size:
509 bytes
|
Rev | Line | |
---|
[1612] | 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;
|
---|
[1612] | 9 |
|
---|
[1823] | 10 | namespace HeuristicLab.Persistence.Default.DebugString.PrimitiveSerializers {
|
---|
[1612] | 11 |
|
---|
| 12 | [EmptyStorableClass]
|
---|
[1823] | 13 | public class Bool2DebugStringSerializer : DebugStringSerializerBase<bool> { }
|
---|
[1612] | 14 |
|
---|
| 15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.