![]() |
NDEVR
API Documentation
|
Encapsulates a request to capture a screenshot, along with a callback to receive the resulting image identifier. More...
Public Member Functions | |
| ScreenshotRequest () | |
| Default constructor. | |
| ScreenshotRequest (std::function< void(const StringView &image_id)> callback) | |
| Constructs a ScreenshotRequest with the given completion callback. | |
| bool | operator!= (const ScreenshotRequest &) const |
| Inequality operator. | |
| bool | operator== (const ScreenshotRequest &) const |
| Equality operator. | |
Public Attributes | |
| std::function< void(const StringView &image_id)> | callback |
| Callback invoked with the screenshot image identifier upon completion. | |
Encapsulates a request to capture a screenshot, along with a callback to receive the resulting image identifier.
|
inline |
Constructs a ScreenshotRequest with the given completion callback.
| [in] | callback | Function invoked with the image identifier once the screenshot is captured. |
Definition at line 67 of file Camera.h.
References callback.
|
inline |
Inequality operator.
Always returns true since each request is considered unique.
Definition at line 82 of file Camera.h.
References ScreenshotRequest().
|
inline |
Equality operator.
Always returns false since each request is considered unique.
Definition at line 74 of file Camera.h.
References ScreenshotRequest().