Impact Acquire SDK C++
|
A base class for essential device related settings. More...
#include <mvIMPACT_acquire.h>
Public Member Functions | |
BasicDeviceSettings (Device *pDev, const std::string &settingName="Base") | |
brief Constructs a new mvIMPACT::acquire::BasicDeviceSettings object. | |
HOBJ | hObj (void) const |
Returns a unique identifier for the component collection referenced by this object. | |
const ComponentCollection & | restoreDefault (void) const |
Restores the default for every component of this collection. | |
Public Attributes | |
PropertyS | basedOn |
A string property (read-only) containing the name of the setting this setting is based on. | |
PropertyI | imageRequestTimeout_ms |
An integer property defining the maximum time to wait for an image in ms. | |
Protected Attributes | |
HOBJ | m_hRoot |
A base class for essential device related settings.
This class acts as a base class for essential device related settings. It only contains features that are available for every device.
|
inlineexplicit |
brief Constructs a new mvIMPACT::acquire::BasicDeviceSettings object.
[in] | pDev | A pointer to a mvIMPACT::acquire::Device object obtained from a mvIMPACT::acquire::DeviceManager object. |
[in] | settingName | The name of the driver internal setting to access with this instance. A list of valid setting names can be obtained by a call to mvIMPACT::acquire::FunctionInterface::getAvailableSettings, new settings can be created with the function mvIMPACT::acquire::FunctionInterface::createSetting |
|
inlineinherited |
Returns a unique identifier for the component collection referenced by this object.
This handle will always reference an object of type mvIMPACT::acquire::ComponentList.
|
inlineinherited |
Restores the default for every component of this collection.
Calling this function will restore the default value for every component belonging to this collection.
PropertyS basedOn |
A string property (read-only) containing the name of the setting this setting is based on.
PropertyI imageRequestTimeout_ms |
An integer property defining the maximum time to wait for an image in ms.
When this property is set to 0 the timeout never elapses. If the timeout this property defines elapses the currently processed request will be returned to the user even if no data has been captured so far. The result structure of the request object should be examined in that case. Also this should be considered as an error from the users point of view in which case he should clean up the acquisition queue by calling mvIMPACT::acquire::FunctionInterface::imageRequestReset. Afterwards the capture loop can be restarted.
|
protectedinherited |