32 lines
952 B
C#
32 lines
952 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Reflection;
|
|
using CaeGlobals;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace CPSO.Commands
|
|
{
|
|
[Serializable]
|
|
public abstract class PostprocessCommand : Command
|
|
{
|
|
// Variables
|
|
|
|
|
|
// Properties
|
|
|
|
|
|
// Constructors
|
|
public PostprocessCommand(string name)
|
|
: base(name)
|
|
{
|
|
}
|
|
|
|
|
|
// Methods
|
|
|
|
}
|
|
}
|