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:
476 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.Primitive {
|
---|
6 |
|
---|
7 | /// <summary>
|
---|
8 | /// Common base class for primitive XML serializers.
|
---|
9 | /// </summary>
|
---|
10 | /// <typeparam name="T">The source type being serialized to XMl.</typeparam>
|
---|
11 | public abstract class PrimitiveXmlSerializerBase<T> : XmlSerializerBase<T> { }
|
---|
12 |
|
---|
13 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.