Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Networks/3.3/Programmable/ProgrammableNetworkItemCode.cs @ 11577

Last change on this file since 11577 was 11577, checked in by swagner, 10 years ago

#2205: Restructured solution and projects and switched all projects to .NET 4.5

File size: 629 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3
4namespace HeuristicLab.Networks.Programmable {
5  [Item("MyProgrammableNetworkItem", "A programmable item of a network.")]
6  public class MyProgrammableNetworkItem : ProgrammableNetworkItem.CompiledProgrammableNetworkItem {
7    protected MyProgrammableNetworkItem(MyProgrammableNetworkItem original, Cloner cloner) : base(original, cloner) { }
8    public MyProgrammableNetworkItem(ProgrammableNetworkItem context) : base(context) { }
9
10    public override IDeepCloneable Clone(Cloner cloner) {
11      return new MyProgrammableNetworkItem(this, cloner);
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.