Changeset 9754 for branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ConvexHullView.cs
- Timestamp:
- 07/25/13 11:14:56 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ConvexHullView.cs
r9730 r9754 30 30 namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views { 31 31 [View("ConvexHull View")] 32 [Content(typeof(PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>), false)]32 [Content(typeof(PermutationSolutionDictionary), false)] 33 33 public partial class ConvexHullView : ItemView { 34 34 public ConvexHullView() { … … 36 36 } 37 37 38 public new PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>Content {39 get { return (PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>)base.Content; }38 public new PermutationSolutionDictionary Content { 39 get { return (PermutationSolutionDictionary)base.Content; } 40 40 set { base.Content = value; } 41 41 }
Note: See TracChangeset
for help on using the changeset viewer.