@@ -243,23 +243,23 @@ class ContainerImpl
243243 }
244244
245245 Container::ScanConverterError HardInitScanConverter ( int depth,
246- int widthScan, int heightScan, int steering )
246+ int widthScan, int heightScan, int steering, int depthCfm )
247247 {
248248
249249 return static_cast < Container::ScanConverterError >(
250250 WrappedScanConverter->HardInitScanConverter ( depth, widthScan,
251- heightScan, steering, WrappedCapture.get (),
251+ heightScan, steering, depthCfm, WrappedCapture.get (),
252252 WrappedImageBuilding.get () ) );
253253 }
254254
255255 Container::ScanConverterError IdleInitScanConverter ( int depth,
256- int widthScan, int heightScan, short idleId, int idleSteering,
257- bool idleDoubler, bool idleCompound, int idleCompoundAngle )
256+ int widthScan, int heightScan, short idleId, int idleSteering, int depthCfm,
257+ bool idleDoubler, bool idleCompound, int idleCompoundAngle, bool idleCfm )
258258 {
259259 return static_cast < Container::ScanConverterError >(
260260 WrappedScanConverter->IdleInitScanConverter ( depth, widthScan,
261- heightScan, idleId, idleSteering, idleDoubler, idleCompound,
262- idleCompoundAngle, WrappedImageBuilding.get () ) );
261+ heightScan, idleId, idleSteering, depthCfm, idleDoubler, idleCompound,
262+ idleCompoundAngle, idleCfm, WrappedImageBuilding.get () ) );
263263 }
264264
265265 //
@@ -302,16 +302,6 @@ class ContainerImpl
302302 return WrappedCapture->ScanOn ;
303303 }
304304
305- void AbortScan ()
306- {
307- WrappedCapture->AbortScan ();
308- }
309-
310- void DisposeScan ()
311- {
312- WrappedCapture->DisposeScan ();
313- }
314-
315305 void StartReadScan ()
316306 {
317307 WrappedCapture->StartReadScan ( (ArrayType ^)Buffer );
@@ -460,21 +450,22 @@ ::GetZeroOfYScale() const
460450Container::ScanConverterError
461451Container
462452::HardInitScanConverter ( int depth, int widthScan, int heightScan,
463- int steering )
453+ int steering, int depthCfm )
464454{
465455 return Impl->HardInitScanConverter ( depth, widthScan, heightScan,
466- steering );
456+ steering, depthCfm );
467457}
468458
469459
470460Container::ScanConverterError
471461Container
472462::IdleInitScanConverter ( int depth, int width, int height, short idleId,
473- int idleSteering, bool idleDoubler, bool idleCompound,
474- int idleCompoundAngle )
463+ int idleSteering, int depthCfm, bool idleDoubler, bool idleCompound,
464+ int idleCompoundAngle, bool idleCfm )
475465{
476466 return Impl->IdleInitScanConverter ( depth, width, height, idleId,
477- idleSteering, idleDoubler, idleCompound, idleCompoundAngle );
467+ idleSteering, depthCfm, idleDoubler, idleCompound, idleCompoundAngle,
468+ idleCfm );
478469}
479470
480471//
@@ -518,22 +509,6 @@ ::GetScanOn() const
518509}
519510
520511
521- void
522- Container
523- ::AbortScan ()
524- {
525- Impl->AbortScan ();
526- }
527-
528-
529- void
530- Container
531- ::DisposeScan ()
532- {
533- Impl->DisposeScan ();
534- }
535-
536-
537512void
538513Container
539514::StartReadScan ()
0 commit comments