CCaptureStateListener
The CCaptureStateListener
class is an abstract class that defines a listener for capture state changes.
Definition
Namespace: dynamsoft::cvr
Assembly: DynamsoftCaptureVisionRouter
class CCaptureStateListener
Methods Summary
Method | Description |
---|---|
OnCaptureStateChanged |
Called when the capture state changes. |
OnCaptureStateChanged
Called when the capture state changes.
virtual void OnCaptureStateChanged(CaptureState state) = 0;
Parameters
[in] state
The new capture state.
Return value
This method does not return a value. It is a pure virtual method and must be implemented by a derived class.
See Also