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/TimeSpanValue.cs

    r17226 r17253  
    2323using System.Globalization;
    2424using System.Text;
     25using HEAL.Attic;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
    27 using HEAL.Attic;
    2828
    2929namespace HeuristicLab.Data {
     
    3737    }
    3838    public TimeSpanValue() : base() { }
    39     public TimeSpanValue(TimeSpan value) : base(value) { }
     39    public TimeSpanValue(TimeSpan value, bool @readonly = false) : base(value, @readonly) { }
    4040
    4141    public override IDeepCloneable Clone(Cloner cloner) {
     
    8080    }
    8181
     82    public new TimeSpanValue AsReadOnly() {
     83      return (TimeSpanValue)base.AsReadOnly();
     84    }
     85
    8286    #region IStringConvertibleValue Members
    8387    bool IStringConvertibleValue.Validate(string value, out string errorMessage) {
Note: See TracChangeset for help on using the changeset viewer.