32 lines
733 B
C#
32 lines
733 B
C#
using RobotApp.Interfaces;
|
|
using RobotApp.VDA5050.State;
|
|
|
|
namespace RobotApp.Services.Robot;
|
|
|
|
public class RobotAction : IInstantActions
|
|
{
|
|
public ActionState[] ActionStates { get; private set; } = [];
|
|
|
|
public bool HasActionRunning => throw new NotImplementedException();
|
|
|
|
public bool AddInstanceAction(VDA5050.InstantAction.Action action)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool AddOrderActions(VDA5050.InstantAction.Action[] actions)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool StartAction(string actionId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool StopAction()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|