26 lines
472 B
C#
26 lines
472 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.Services
|
|
{
|
|
/// <summary>
|
|
/// 程序运行时服务
|
|
/// 负责程序的解析、运行、调度等功能
|
|
/// </summary>
|
|
public class ProRuntimeService
|
|
{
|
|
/// <summary>
|
|
/// 实例化函数
|
|
/// </summary>
|
|
public ProRuntimeService()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|