Zivid C++ API 2.13.1+18e79e79-1
|
Information about the system that captured this frame. More...
#include <Zivid/FrameInfo.h>
Classes | |
class | ComputeDevice |
Compute device. More... | |
class | CPU |
CPU. More... | |
class | OperatingSystem |
Operating system. More... | |
Public Types | |
using | Descendants |
Public Member Functions | |
SystemInfo () | |
Default constructor. | |
template<typename... Args> | |
SystemInfo (Args &&...args) | |
Constructor taking variadic number of arguments. | |
template<typename... Args> | |
void | set (Args &&...args) |
Set multiple arguments. | |
template<typename... Args> | |
SystemInfo | copyWith (Args &&...args) const |
Returns a copy of this object with the given argument(s) set to the new value(s) | |
const CPU & | cpu () const |
Get CPU. | |
CPU & | cpu () |
Get CPU. | |
SystemInfo & | set (const CPU &value) |
Set CPU. | |
SystemInfo & | set (const CPU::Model &value) |
Set CPU::Model. | |
const ComputeDevice & | computeDevice () const |
Get ComputeDevice. | |
ComputeDevice & | computeDevice () |
Get ComputeDevice. | |
SystemInfo & | set (const ComputeDevice &value) |
Set ComputeDevice. | |
SystemInfo & | set (const ComputeDevice::Model &value) |
Set ComputeDevice::Model. | |
SystemInfo & | set (const ComputeDevice::Vendor &value) |
Set ComputeDevice::Vendor. | |
const OperatingSystem & | operatingSystem () const |
Get OperatingSystem. | |
OperatingSystem & | operatingSystem () |
Get OperatingSystem. | |
SystemInfo & | set (const OperatingSystem &value) |
Set OperatingSystem. | |
template<typename T , typename std::enable_if< std::is_same< T, FrameInfo::SystemInfo::CPU >::value, int >::type = 0> | |
const FrameInfo::SystemInfo::CPU & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, FrameInfo::SystemInfo::CPU::Model >::value, int >::type = 0> | |
const FrameInfo::SystemInfo::CPU::Model & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, FrameInfo::SystemInfo::ComputeDevice >::value, int >::type = 0> | |
const FrameInfo::SystemInfo::ComputeDevice & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, FrameInfo::SystemInfo::ComputeDevice::Model >::value, int >::type = 0> | |
const FrameInfo::SystemInfo::ComputeDevice::Model & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, FrameInfo::SystemInfo::ComputeDevice::Vendor >::value, int >::type = 0> | |
const FrameInfo::SystemInfo::ComputeDevice::Vendor & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, FrameInfo::SystemInfo::OperatingSystem >::value, int >::type = 0> | |
const FrameInfo::SystemInfo::OperatingSystem & | get () const |
template<size_t i, typename std::enable_if< i==0, int >::type = 0> | |
const FrameInfo::SystemInfo::CPU & | get () const |
template<size_t i, typename std::enable_if< i==1, int >::type = 0> | |
const FrameInfo::SystemInfo::ComputeDevice & | get () const |
template<size_t i, typename std::enable_if< i==2, int >::type = 0> | |
const FrameInfo::SystemInfo::OperatingSystem & | get () const |
template<typename F > | |
void | forEach (const F &f) const |
Run the given function on each direct member with the value of the member as parameter. | |
template<typename F > | |
void | forEach (const F &f) |
Run the given function on each direct member with the value of the member as parameter. | |
bool | operator== (const SystemInfo &other) const |
Equality operator. | |
bool | operator!= (const SystemInfo &other) const |
Inequality operator. | |
std::string | toString () const |
Get the value as string. | |
Static Public Attributes | |
static constexpr DataModel::NodeType | nodeType = DataModel::NodeType::group |
The type of this node. | |
static constexpr const char * | path { "SystemInfo" } |
The full path for this value. | |
static constexpr const char * | name { "SystemInfo" } |
The name of this value. | |
static constexpr const char * | description |
The description for this value. | |
Friends | |
struct | DataModel::Detail::Befriend< SystemInfo > |
std::ostream & | operator<< (std::ostream &stream, const SystemInfo &value) |
Operator to send the value as string to a stream. | |
Information about the system that captured this frame.
Zivid::FrameInfo::SystemInfo::SystemInfo | ( | ) |
Default constructor.
|
inlineexplicit |
Constructor taking variadic number of arguments.
One or more descendant types can be provided. All types not provided will be set to their default value. The result is the same as default constructing SystemInfo
then invoking set(args)
.
The provided arguments must be descendants of SystemInfo
. These types can be provided:
|
inline |
Get ComputeDevice.
|
inline |
Get ComputeDevice.
|
inline |
Returns a copy of this object with the given argument(s) set to the new value(s)
Creates a copy of this SystemInfo object, then invokes set(args)
on the copy, and finally returns the copy. This method does not modify the original object.
The provided arguments must be descendants of SystemInfo
. These types can be provided:
|
inline |
Run the given function on each direct member with the value of the member as parameter.
|
inline |
Run the given function on each direct member with the value of the member as parameter.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Get OperatingSystem.
|
inline |
Get OperatingSystem.
bool Zivid::FrameInfo::SystemInfo::operator!= | ( | const SystemInfo & | other | ) | const |
Inequality operator.
bool Zivid::FrameInfo::SystemInfo::operator== | ( | const SystemInfo & | other | ) | const |
Equality operator.
|
inline |
Set multiple arguments.
The method invokes set(arg)
with each of the provided arguments.
The provided arguments must be descendants of SystemInfo
. These types can be provided:
|
inline |
Set ComputeDevice.
|
inline |
Set ComputeDevice::Model.
|
inline |
|
inline |
Set CPU.
|
inline |
Set CPU::Model.
|
inline |
Set OperatingSystem.
std::string Zivid::FrameInfo::SystemInfo::toString | ( | ) | const |
Get the value as string.
|
friend |
|
friend |
Operator to send the value as string to a stream.
|
staticconstexpr |
The description for this value.
|
staticconstexpr |
The name of this value.
|
staticconstexpr |
The type of this node.
|
staticconstexpr |
The full path for this value.