Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/10 04:53:48 (14 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#893).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/ValueTypeMatrix.cs

    r3054 r3306  
    2222using System;
    2323using System.Collections;
     24using System.Drawing;
    2425using System.Text;
    2526using HeuristicLab.Common;
     
    3132  [StorableClass]
    3233  public abstract class ValueTypeMatrix<T> : Item, IEnumerable where T : struct {
     34    public override Image ItemImage {
     35      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
     36    }
     37
    3338    [Storable]
    3439    protected T[,] matrix;
Note: See TracChangeset for help on using the changeset viewer.