IFPSTools.NET/IFPSLib/Types/ImmediateFunctionType.cs
2022-08-07 15:42:41 +01:00

19 lines
462 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace IFPSLib.Types
{
/// <summary>
/// Pseudo-type describing a function index.
/// </summary>
public class ImmediateFunctionType : TypeBase
{
public override PascalTypeCode BaseType => PascalTypeCode.Function;
private ImmediateFunctionType() { }
public static readonly ImmediateFunctionType Instance = new ImmediateFunctionType();
}
}