41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CaeMesh;
|
|
using CaeGlobals;
|
|
using System.ComponentModel;
|
|
using DynamicTypeDescriptor;
|
|
using System.Drawing.Design;
|
|
using CaeResults;
|
|
|
|
namespace CPSO.Forms
|
|
{
|
|
[Serializable]
|
|
public abstract class ViewTransformation
|
|
{
|
|
// Variables
|
|
protected DynamicCustomTypeDescriptor _dctd = null;
|
|
protected ItemSetData _startPointItemSetData;
|
|
protected ItemSetData _endPointItemSetData;
|
|
|
|
|
|
// Properties
|
|
//[Browsable(false)]
|
|
[Category("Data")]
|
|
[OrderedDisplayName(0, 10, "Name")]
|
|
[Description("Enter the transformation name.")]
|
|
[Id(1, 1)]
|
|
public virtual string Name { get; set; }
|
|
|
|
|
|
// Constructors
|
|
|
|
|
|
// Methods
|
|
[Browsable(false)]
|
|
public abstract Transformation Base { get; }
|
|
}
|
|
}
|