34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CaeMesh;
|
|
using System.ComponentModel;
|
|
using CaeGlobals;
|
|
using DynamicTypeDescriptor;
|
|
|
|
namespace CaeResults
|
|
{
|
|
[Serializable]
|
|
public abstract class ResultFieldOutput : NamedClass
|
|
{
|
|
// Variables
|
|
|
|
|
|
// Properties
|
|
|
|
|
|
// Constructors
|
|
public ResultFieldOutput(string name)
|
|
: base(name)
|
|
{
|
|
}
|
|
|
|
|
|
// Methods
|
|
public abstract string[] GetParentNames(); // for dependency check
|
|
public abstract string[] GetComponentNames();
|
|
}
|
|
}
|