- Timestamp:
- 04/24/09 15:18:45 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Bool2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Bool2DebugStringFormatter : ValueType2DebugStringFormatterBase<bool> { }13 public class Bool2DebugStringFormatter : DebugStringFormatterBase<bool> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Byte2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Byte2DebugStringFormatter : ValueType2DebugStringFormatterBase<byte> { }13 public class Byte2DebugStringFormatter : DebugStringFormatterBase<byte> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Char2DebugStringFormatter.cs
r1652 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Char2DebugStringFormatter : ValueType2DebugStringFormatterBase<char> { }13 public class Char2DebugStringFormatter : DebugStringFormatterBase<char> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/DateTime2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class DateTime2DebugStringFormatter : ValueType2DebugStringFormatterBase<DateTime> { }13 public class DateTime2DebugStringFormatter : DebugStringFormatterBase<DateTime> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Doubld2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Double2DebugStringFormatter : ValueType2DebugStringFormatterBase<double> { }13 public class Double2DebugStringFormatter : DebugStringFormatterBase<double> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Float2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Float2DebugStringFormatter : ValueType2DebugStringFormatterBase<float> { }13 public class Float2DebugStringFormatter : DebugStringFormatterBase<float> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Int2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Int2DebugStringFormatter : ValueType2DebugStringFormatterBase<int> { }13 public class Int2DebugStringFormatter : DebugStringFormatterBase<int> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Long2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Long2DebugStringFormatter : ValueType2DebugStringFormatterBase<long> { }13 public class Long2DebugStringFormatter : DebugStringFormatterBase<long> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/SByte2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class SByte2DebugStringFormatter : ValueType2DebugStringFormatterBase<sbyte> { }13 public class SByte2DebugStringFormatter : DebugStringFormatterBase<sbyte> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Short2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Short2DebugStringFormatter : ValueType2DebugStringFormatterBase<short> { }13 public class Short2DebugStringFormatter : DebugStringFormatterBase<short> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/String2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class String2DebugStringFormatter : ValueType2DebugStringFormatterBase<string> { }13 public class String2DebugStringFormatter : DebugStringFormatterBase<string> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/Type2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class Type2DebugStringFormatter : ValueType2DebugStringFormatterBase<Type> { }13 public class Type2DebugStringFormatter : DebugStringFormatterBase<Type> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/UInt2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class UInt2DebugStringFormatter : ValueType2DebugStringFormatterBase<uint> { }13 public class UInt2DebugStringFormatter : DebugStringFormatterBase<uint> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/ULong2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class ULong2DebugStringFormatter : ValueType2DebugStringFormatterBase<ulong> { }13 public class ULong2DebugStringFormatter : DebugStringFormatterBase<ulong> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/UShort2DebugStringFormatter.cs
r1623 r1659 11 11 12 12 [EmptyStorableClass] 13 public class UShort2DebugStringFormatter : ValueType2DebugStringFormatterBase<ushort> { }13 public class UShort2DebugStringFormatter : DebugStringFormatterBase<ushort> { } 14 14 15 15 } -
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/Formatters/ValueType2DebugStringFormatterBase.cs
r1612 r1659 9 9 namespace HeuristicLab.Persistence.Default.DebugString.Formatters { 10 10 11 public abstract class ValueType2DebugStringFormatterBase<T> : FormatterBase<T, DebugString> {11 public abstract class DebugStringFormatterBase<T> : FormatterBase<T, DebugString> { 12 12 public override DebugString Format(T o) { return new DebugString(o.ToString()); } 13 13 public override T Parse(DebugString s) {
Note: See TracChangeset
for help on using the changeset viewer.