[3742] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
[1567] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using HeuristicLab.Persistence.Interfaces;
|
---|
| 26 | using HeuristicLab.Persistence.Default.Xml;
|
---|
| 27 | using HeuristicLab.Persistence.Core;
|
---|
| 28 | using HeuristicLab.Persistence.Core.Tokens;
|
---|
[1823] | 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[1567] | 30 |
|
---|
| 31 | namespace HeuristicLab.Persistence.Default.DebugString {
|
---|
[3016] | 32 |
|
---|
| 33 | /// <summary>
|
---|
| 34 | /// Simple write-only format for debugging purposes.
|
---|
| 35 | /// </summary>
|
---|
[3017] | 36 | [StorableClass]
|
---|
[1659] | 37 | public class DebugString : ISerialData {
|
---|
[1567] | 38 |
|
---|
[3016] | 39 | /// <summary>
|
---|
| 40 | /// Gets or sets the data.
|
---|
| 41 | /// </summary>
|
---|
| 42 | /// <value>The data.</value>
|
---|
[1659] | 43 | [Storable]
|
---|
[1567] | 44 | public string Data { get; set; }
|
---|
[1659] | 45 |
|
---|
[3002] | 46 | private DebugString() { }
|
---|
| 47 |
|
---|
[3016] | 48 | /// <summary>
|
---|
| 49 | /// Initializes a new instance of the <see cref="DebugString"/> class.
|
---|
| 50 | /// </summary>
|
---|
| 51 | /// <param name="s">The string.</param>
|
---|
[1567] | 52 | public DebugString(string s) {
|
---|
| 53 | Data = s;
|
---|
| 54 | }
|
---|
[1659] | 55 |
|
---|
[1567] | 56 | }
|
---|
| 57 |
|
---|
| 58 | }
|
---|