Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/07/10 01:49:31 (14 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/DataType.cs

    r4492 r4566  
    2020#endregion
    2121
     22using HeuristicLab.Common;
    2223using HeuristicLab.Core;
    2324
     
    3132    }
    3233
     34    public override IDeepCloneable Clone(Cloner cloner) {
     35      DataType clone = (DataType)base.Clone(cloner);
     36      clone.Name = Name;
     37      clone.SqlName = SqlName;
     38      clone.PlatformId = PlatformId;
     39      return clone;
     40    }
     41
    3342    public override string ToString() {
    3443      return Name;
Note: See TracChangeset for help on using the changeset viewer.