Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/21 09:48:16 (3 years ago)
Author:
jzenisek
Message:

#2719 merged head of HeuristicLab.Problems.DataAnalysis into branch; added several minor items

Location:
branches/2719_HeuristicLab.DatastreamAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2719_HeuristicLab.DatastreamAnalysis

  • branches/2719_HeuristicLab.DatastreamAnalysis/HeuristicLab.DatastreamAnalysis/3.4/DataBarSet.cs

    r14588 r17980  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 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
     22using System;
    223using System.Collections.Generic;
    324using System.ComponentModel;
    425using System.Drawing;
    5 using System.Linq;
    6 using System.Text;
    7 using System.Threading.Tasks;
    8 using HeuristicLab.Analysis;
    926using HeuristicLab.Collections;
    1027using HeuristicLab.Common;
    1128using HeuristicLab.Core;
    12 using HeuristicLab.Data;
    13 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    1430
    1531namespace HeuristicLab.DatastreamAnalysis {
     
    1834  /// </summary>
    1935  [Item("DataBarSet", "A set of bars, each having name and value.")]
    20   [StorableClass]
     36  [StorableType("B07EF3A9-8500-4140-AF73-9C225A5AC2B5")]
    2137  public class DataBarSet : NamedItem {
    2238    public static new Image StaticItemImage {
     
    4561    #region constructors, cloner,...
    4662    [StorableConstructor]
    47     protected DataBarSet(bool deserializing) : base(deserializing) { }
     63    protected DataBarSet(StorableConstructorFlag _) : base(_) { }
    4864
    4965    public DataBarSet() : base() {
Note: See TracChangeset for help on using the changeset viewer.