示例#1
0
 public DataAcquisition(IAcquisitionDevice aDevice, IFrameSearcher aFrameSearcher, IFrameDataFormatter formatFrame, IDisplay publisher)
 {
     this.device         = aDevice;
     this.frameFormatter = formatFrame;
     this.frameSearcher  = aFrameSearcher;
     this.publisher      = publisher;
 }
示例#2
0
 public DataAcquisition(IAcquisitionDevice aDevice)
 {
     this.device = aDevice;
 }
示例#3
0
 public DataAcquisition(IAcquisitionDevice aDevice, IFrameSearcher aFrameSearcher)
 {
     this.device        = aDevice;
     this.frameSearcher = aFrameSearcher;
 }