|
| GenApi::AccessMode | AccessMode () const override |
| | Gets the access mode by querying all ValueConfigs for it.
|
| |
| GenApi::CacheMode | CacheMode () const override |
| | Gets the cache mode by querying all ValueConfigs for it.
|
| |
|
bool | IsStreamable () const override |
| | Commands are never streamable.
|
| |
|
bool | IsDone () const |
| | If this command is readable, the execution state can be queried.
|
| |
|
void | Execute () |
| | Executes this command.
|
| |
| template<class Rep, class Period> |
| std::chrono::duration< Rep, Period > | PollingTime () const |
| | Gets the polling time of this value.
|
| |
| template<class Rep, class Period> |
| void | SetPollingTime (const std::chrono::duration< Rep, Period > ×pan) |
| | Sets the polling time of this value.
|
| |
| template<class T> |
| T | CommandConfig () const |
| | Gets and sets the command value configuration of this command node.
|
| |
| template<class T> |
| void | SetCommandConfig (const T &) |
| | Sets the command value configuration of this command node.
|
| |
| template<class T> |
| T | ValueConfig () const |
| | Gets and sets the value configuration of this command node.
|
| |
| template<class T> |
| void | SetValueConfig (const T &) |
| | Sets the value configuration of this command node.
|
| |
| void | FromString (const String &value) override |
| | Executes if value is "true".
|
| |
| String | ToString () const override |
| | Gets the IsDone status as a string.
|
| |
| virtual void | SetIsStreamable (const std::int64_t &value) |
| | Sets whether this node should be used when the camera settings are stored.
|
| |
| template<class Rep, class Period> |
| std::chrono::duration< Rep, Period > | PollingTime () const |
| | Gets the polling time of this value.
|
| |
| EventCookie | RegisterEventWrittenUpdated (std::function< void(ValueNode &)> handler) |
| | Register a listener to node written event.
|
| |
| void | UnregisterEventWrittenUpdated (EventCookie eventCookie) noexcept |
| | Manually unregister a listener to the node written event.
|
| |
| EventCookie | RegisterEventOnReadUpdated (std::function< void(ValueNode &)> handler) |
| | Register a listener to node on read event.
|
| |
| void | UnregisterEventOnReadUpdated (EventCookie eventCookie) noexcept |
| | Manually unregister a listener to the node on read event.
|
| |
| void | Add (const NodePtr &item, const NodeList &kind) |
| | Adds a Node item .
|
| |
| bool | Remove (const NodePtr &item, const NodeList &kind) |
| | Remove a single Node item from this collection.
|
| |
| void * | Handle () const noexcept |
| | Classic API node handle.
|
| |
|
NodeMapPtr | NodeMap () const |
| | Gets the node map of this GevServer node.
|
| |
| String | ToolTip () const |
| | Gets the short descriptive text of this node.
|
| |
| void | SetToolTip (const String &value) |
| | Sets the short descriptive text of this node.
|
| |
| String | Description () const |
| | Gets the long descriptive text of this node.
|
| |
| void | SetDescription (const String &value) |
| | Sets the long descriptive text of this node.
|
| |
| Cvb::GenApi::AccessMode | ImposedAccessMode () const |
| | Gets the node's default AccessMode.
|
| |
|
void | SetImposedAccessMode (const Cvb::GenApi::AccessMode &accessMode) |
| | Overrides the node's default AccessMode.
|
| |
| bool | IsImplemented () const |
| | Helper to check whether this node is implemented.
|
| |
|
IntegerBaseNodePtr | IsImplementedConfig () const |
| | Gets the node that specifies whether a node is implemented in the device or not.
|
| |
| void | SetIsImplementedConfig (const IntegerBaseNodePtr &node) |
| | Sets the node that specifies whether a node is implemented in the device or not.
|
| |
| bool | IsAvailable () const |
| | Helper to check whether this node is available.
|
| |
| IntegerBaseNodePtr | IsAvailableConfig () const |
| | Gets the node that specifies whether a node is currently available or not.
|
| |
| void | SetIsAvailableConfig (const IntegerBaseNodePtr &node) |
| | Sets the node that specifies whether a node is currently available or not.
|
| |
| bool | IsReadable () const |
| | Helper to check whether this node is readable.
|
| |
| bool | IsWritable () const |
| | Helper to check whether this node is writable.
|
| |
| IntegerBaseNodePtr | IsLockedConfig () const |
| | Gets the node that specifies whether a node is currently read only or not.
|
| |
| void | SetIsLockedConfig (const IntegerBaseNodePtr &node) |
| | Sets the node that specifies whether a node is currently read only or not.
|
| |
| Cvb::GenApi::Visibility | Visibility () const |
| | Gets the complexity level of this node.
|
| |
| void | SetVisibility (const Cvb::GenApi::Visibility &value) |
| | Gets the complexity level of this node.
|
| |
| NodePtr | AliasNode () const |
| | Gets the node that is an alias value for this node.
|
| |
| void | SetAliasNode (const NodePtr &value) |
| | Sets the node that is an alias value for this node.
|
| |
| String | Name () const |
| | Gets the full name of this node.
|
| |
| String | NameOnly () const |
| | Gets the name of this node without namespace.
|
| |
| GevServer::Namespace | Namespace () const |
| | Gets the namespace this node is in.
|
| |
| String | EventID () const |
| | Nodes with an event identifier may become invalidated if an event/message is delivered from the device.
|
| |
| bool | IsFeature () const |
| | Gets whether this node is considered a feature node.
|
| |
| bool | IsDeprecated () const |
| | Gets whether this node is considered deprecated.
|
| |
| String | DisplayName () const |
| | Gets the display name of this node.
|
| |
| void | SetDisplayName (const String &value) |
| | Sets the display name of this node.
|
| |
| EventCookie | RegisterEventUpdated (std::function< void(Node &)> handler) |
| | Register a listener to node updated event.
|
| |
| void | UnregisterEventUpdated (EventCookie eventCookie) noexcept |
| | Manually unregister a listener to the node updated event.
|
| |
| template<class NodeT, class ValueConfigNodeType> |
| ValueNodePtr | GetTerminalRegisterNode (const NodeT *node, std::function< bool(Node *)> f) const |
| | Try to get terminal register node.
|
| |
A node that can be executed.