You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
866 B
C#

11 months ago
using Rs.Motion;
using Rs.MotionPlat.Commom;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Rs.MotionPlat.Flow.SafePosFlow
{
public enum EGoSafePosFlowStep
{
,
}
public class GoSafePosFlow
{
protected string logInfo = string.Empty;
protected ErrorCode errCode = ErrorCode.Ok;
protected EGoSafePosFlowStep step = EGoSafePosFlowStep.;
protected bool finished = true;
protected ManualResetEvent taskFinishedEvent = new ManualResetEvent(true);
/// <summary>
/// 回安全位
/// </summary>
public virtual void GoSafePostion(EExceptionSafePos ePos = EExceptionSafePos.Socket)
{
}
}
}