Changeset 10834
- Timestamp:
- 05/11/14 01:38:53 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Vertex.cs
r10677 r10834 55 55 } 56 56 57 [Storable] 58 public object Content { get; set; } 59 57 60 [StorableConstructor] 58 61 public Vertex(bool deserializing) : base(deserializing) { } … … 61 64 id = Guid.NewGuid().ToString(); 62 65 } 63 64 public object Content { get; set; }65 66 66 67 protected Vertex(Vertex original, Cloner cloner)
Note: See TracChangeset
for help on using the changeset viewer.