Rev | Line | |
---|
[10245] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Core;
|
---|
| 3 | using System.Drawing;
|
---|
[10242] | 4 | using System;
|
---|
| 5 | using System.Collections.Generic;
|
---|
| 6 | using System.Linq;
|
---|
| 7 | using System.Text;
|
---|
| 8 |
|
---|
| 9 | namespace HeuristicLab.DataPreprocessing
|
---|
| 10 | {
|
---|
| 11 | [Item("TransformationContent", "Represents the transformation grid.")]
|
---|
[10245] | 12 | class TransformationContent : Item
|
---|
[10242] | 13 | {
|
---|
[10245] | 14 | public TransformationContent(TransformationContent content, Cloner cloner)
|
---|
| 15 | : base(content, cloner)
|
---|
| 16 | {
|
---|
| 17 |
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | public static new Image StaticItemImage
|
---|
| 21 | {
|
---|
| 22 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
| 26 | {
|
---|
| 27 | return new TransformationContent(this, cloner);
|
---|
| 28 | }
|
---|
[10242] | 29 | }
|
---|
| 30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.