将以往的代码复制到代码库

This commit is contained in:
于智纯
2025-08-30 17:19:57 +08:00
parent da46e0242d
commit 20ea70bf64
198 changed files with 10075 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Navigation;
namespace Future.Contract
{
/// <summary>
/// 占位符指令,用于在编辑指令序列时临时标记还未开发完成的指令
/// </summary>
[InstructionDefine(InstKind = EInstructionKind.Design,AllowAddParameter =true)]
public sealed class PlaceholderInstruct : FutureInstruct,IConfigurableObject
{
protected override string GetInstructValExp()
{
throw new NotImplementedException();
}
protected override string CheckChild(FutureInstruct childInst)
{
throw new NotImplementedException();
}
protected override string CheckParent(FutureInstruct newParent)
{
throw new NotImplementedException();
}
protected override InstructResult DoExecute(IEnumerable<IOutputChannel> outChannels)
{
throw new NotImplementedException();
}
protected override void DoFinally( IEnumerable<IOutputChannel> outChannels, InstructResult result)
{
throw new NotImplementedException();
}
protected override void DoVerify(IOutputChannel infoChannel)
{
throw new NotImplementedException();
}
public override IEnumerable<ExpressionHandle> GetExpressionHandles(EParameterKind kind )
{
throw new NotImplementedException();
}
}
}