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:
478 bytes
|
Line | |
---|
1 | using HeuristicLab.Persistence.Interfaces;
|
---|
2 | using HeuristicLab.Persistence.Core;
|
---|
3 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Persistence.Default.Xml {
|
---|
6 |
|
---|
7 | /// <summary>
|
---|
8 | /// Common base class for all primitive XML Serializers.
|
---|
9 | /// </summary>
|
---|
10 | /// <typeparam name="T">The source type being serialized to XML.</typeparam>
|
---|
11 | public abstract class XmlSerializerBase<T> : PrimitiveSerializerBase<T, XmlString> { }
|
---|
12 |
|
---|
13 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.