Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1327 for trunk/sources


Ignore:
Timestamp:
03/11/09 19:18:39 (15 years ago)
Author:
cbahner
Message:

#519 fixed missing functions

Location:
trunk/sources/HeuristicLab.Visualization
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/AvgAggregator.cs

    r1325 r1327  
    164164    }
    165165
     166    public double MinValue {
     167      get { throw new System.NotImplementedException(); }
     168    }
     169
     170    public double MaxValue {
     171      get { throw new System.NotImplementedException(); }
     172    }
     173
    166174    public event ValuesChangedHandler ValuesChanged;
    167175
  • trunk/sources/HeuristicLab.Visualization/AvgLineAggregator.cs

    r1325 r1327  
    178178    }
    179179
     180    public double MinValue {
     181      get { throw new System.NotImplementedException(); }
     182    }
     183
     184    public double MaxValue {
     185      get { throw new System.NotImplementedException(); }
     186    }
     187
    180188    public event ValuesChangedHandler ValuesChanged;
    181189
  • trunk/sources/HeuristicLab.Visualization/MaxAggregator.cs

    r1325 r1327  
    167167    }
    168168
     169    public double MinValue {
     170      get { throw new System.NotImplementedException(); }
     171    }
     172
     173    public double MaxValue {
     174      get { throw new System.NotImplementedException(); }
     175    }
     176
    169177    public event ValuesChangedHandler ValuesChanged;
    170178
  • trunk/sources/HeuristicLab.Visualization/MinAggregator.cs

    r1325 r1327  
    166166    }
    167167
     168    public double MinValue {
     169      get { throw new System.NotImplementedException(); }
     170    }
     171
     172    public double MaxValue {
     173      get { throw new System.NotImplementedException(); }
     174    }
     175
    168176    public event ValuesChangedHandler ValuesChanged;
    169177
Note: See TracChangeset for help on using the changeset viewer.