Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/Device/IDeviceManager.cs

27 lines
428 B
C#

using System;
using System.Collections.Generic;
namespace Aitex.Core.RT.Device
{
public interface IDeviceManager
{
bool Initialize();
void Terminate();
void Monitor();
void Reset();
T GetDevice<T>(string name) where T : class, IDevice;
List<T> GetDevice<T>() where T : class, IDevice;
List<IDevice> GetAllDevice();
object GetDevice(string name);
object GetOptionDevice(string name, Type type);
}
}