Line | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using System.Drawing;
|
---|
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.")]
|
---|
12 | class TransformationContent : Item
|
---|
13 | {
|
---|
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 | }
|
---|
29 | }
|
---|
30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.