using System;
using System.Collections.Generic;
using System.Text;
using HeuristicLab.Persistence.Interfaces;
using HeuristicLab.Persistence.Default.Xml;
using HeuristicLab.Persistence.Core;
using HeuristicLab.Persistence.Core.Tokens;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Persistence.Default.DebugString {
///
/// Simple write-only format for debugging purposes.
///
[StorableClass]
public class DebugStringFormat : FormatBase {
///
/// Gets the format's name.
///
/// The format's name.
public override string Name { get { return "DebugString"; } }
}
}