Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/31/18 08:14:11 (5 years ago)
Author:
gkronber
Message:

#2520: checked and added StorableType attribute in projects up to HeuristicLab.MainForm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IVertex.cs

    r16453 r16474  
    2323using System.Collections.Generic;
    2424using HeuristicLab.Common;
     25using HEAL.Fossil;
    2526
    2627namespace HeuristicLab.Core {
     28  [StorableType("f7a3227e-17b9-4af6-bf6d-0801cbdca286")]
    2729  public interface IVertex : IItem {
    2830    IEnumerable<IArc> InArcs { get; }
     
    4446  }
    4547
     48  [StorableType("f856ed8e-1259-4949-9784-78f1f4da1abb")]
    4649  public interface IVertex<T> : IVertex where T : class, IDeepCloneable {
    4750    T Data { get; set; }
Note: See TracChangeset for help on using the changeset viewer.