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/IArc.cs

    r16453 r16474  
    2222using System;
    2323using HeuristicLab.Common;
     24using HEAL.Fossil;
    2425
    2526namespace HeuristicLab.Core {
     27  [StorableType("6d358590-409c-4fbb-944a-01f8e99be025")]
    2628  public interface IArc : IItem {
    2729    IVertex Source { get; }
     
    3335  }
    3436
    35   public interface IArc<T> : IArc where T : class,IDeepCloneable {
     37  [StorableType("4acdc291-84ea-4da3-95b8-046f973db256")]
     38  public interface IArc<T> : IArc where T : class, IDeepCloneable {
    3639    T Data { get; set; }
    3740  }
Note: See TracChangeset for help on using the changeset viewer.