Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/16/19 16:12:21 (5 years ago)
Author:
abeham
Message:

#2521: worked on refactoring PTSP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Data/3.3/IntValue.cs

    r17226 r17253  
    2323using System.Drawing;
    2424using System.Text;
     25using HEAL.Attic;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
    27 using HEAL.Attic;
    2828
    2929namespace HeuristicLab.Data {
     
    4141    }
    4242    public IntValue() : base() { }
    43     public IntValue(int value) : base(value) { }
     43    public IntValue(int value, bool @readonly = false) : base(value, @readonly) { }
    4444
    4545    public override IDeepCloneable Clone(Cloner cloner) {
     
    8181    }
    8282
     83    public new IntValue AsReadOnly() {
     84      return (IntValue)base.AsReadOnly();
     85    }
     86
    8387    #region IStringConvertibleValue Members
    8488    bool IStringConvertibleValue.Validate(string value, out string errorMessage) {
Note: See TracChangeset for help on using the changeset viewer.