using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SDKCameraTool { public class BaslerCamera : ICamera { public bool bGammaEnable { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public Bitmap bmpImage { get { throw new NotImplementedException(); } } public int cameraID { get { throw new NotImplementedException(); } } public string cameraName { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public CamereaCompanyType CompanyType { get { throw new NotImplementedException(); } } public string CxpFilePath { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public float fExpTime { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public float fGain { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public int Height { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public float iGamma { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public bool isFlowAcq { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public bool IsNeedCalibration { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public int OffsetX { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public int OffsetY { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public string sSerialNumber { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public int TriggerCount { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public int TriggerDelay { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public TriggerMode triggerMode { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public TriggerSouce triggerSource { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public int Width { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public event EventHandler ImageTrigger; public int CloseCam() { throw new NotImplementedException(); } public int OpenCam(CaptureMode captureMode) { throw new NotImplementedException(); } public int Snap() { throw new NotImplementedException(); } } }