123456789101112131415161718192021 |
- using MECF.Framework.Common.Equipment;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CyberX8_RT.Schedulers
- {
- public class SchedulerBuffer : SchedulerModule
- {
- /// <summary>
- /// 构造函数
- /// </summary>
- /// <param name="module"></param>
- public SchedulerBuffer(ModuleName moduleName) : base(moduleName.ToString())
- {
- }
- }
- }
|