Zivid C++ API 2.9.0+4dbba385-1
Defining the Future of 3D Machine Vision
|
Current temperature(s) More...
#include <Zivid/CameraState.h>
Classes | |
class | DMD |
DMD temperature More... | |
class | General |
General temperature More... | |
class | LED |
LED temperature More... | |
class | Lens |
Lens temperature More... | |
class | PCB |
PCB temperature More... | |
Public Types | |
using | Descendants = std::tuple< CameraState::Temperature::DMD, CameraState::Temperature::General, CameraState::Temperature::LED, CameraState::Temperature::Lens, CameraState::Temperature::PCB > |
Public Member Functions | |
Temperature () | |
Default constructor More... | |
template<typename... Args> | |
Temperature (Args &&...args) | |
Constructor taking variadic number of arguments More... | |
template<typename... Args> | |
void | set (Args &&...args) |
Set multiple arguments More... | |
template<typename... Args> | |
Temperature | copyWith (Args &&...args) const |
Returns a copy of this object with the given argument(s) set to the new value(s) More... | |
const DMD & | dmd () const |
Get DMD More... | |
DMD & | dmd () |
Get DMD More... | |
Temperature & | set (const DMD &value) |
Set DMD More... | |
const General & | general () const |
Get General More... | |
General & | general () |
Get General More... | |
Temperature & | set (const General &value) |
Set General More... | |
const LED & | led () const |
Get LED More... | |
LED & | led () |
Get LED More... | |
Temperature & | set (const LED &value) |
Set LED More... | |
const Lens & | lens () const |
Get Lens More... | |
Lens & | lens () |
Get Lens More... | |
Temperature & | set (const Lens &value) |
Set Lens More... | |
const PCB & | pcb () const |
Get PCB More... | |
PCB & | pcb () |
Get PCB More... | |
Temperature & | set (const PCB &value) |
Set PCB More... | |
template<typename T , typename std::enable_if< std::is_same< T, CameraState::Temperature::DMD >::value, int >::type = 0> | |
const CameraState::Temperature::DMD & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, CameraState::Temperature::General >::value, int >::type = 0> | |
const CameraState::Temperature::General & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, CameraState::Temperature::LED >::value, int >::type = 0> | |
const CameraState::Temperature::LED & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, CameraState::Temperature::Lens >::value, int >::type = 0> | |
const CameraState::Temperature::Lens & | get () const |
template<typename T , typename std::enable_if< std::is_same< T, CameraState::Temperature::PCB >::value, int >::type = 0> | |
const CameraState::Temperature::PCB & | get () const |
template<size_t i, typename std::enable_if< i==0, int >::type = 0> | |
const CameraState::Temperature::DMD & | get () const |
template<size_t i, typename std::enable_if< i==1, int >::type = 0> | |
const CameraState::Temperature::General & | get () const |
template<size_t i, typename std::enable_if< i==2, int >::type = 0> | |
const CameraState::Temperature::LED & | get () const |
template<size_t i, typename std::enable_if< i==3, int >::type = 0> | |
const CameraState::Temperature::Lens & | get () const |
template<size_t i, typename std::enable_if< i==4, int >::type = 0> | |
const CameraState::Temperature::PCB & | 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 More... | |
template<typename F > | |
void | forEach (const F &f) |
Run the given function on each direct member with the value of the member as parameter More... | |
bool | operator== (const Temperature &other) const |
Equality operator More... | |
bool | operator!= (const Temperature &other) const |
Inequality operator More... | |
std::string | toString () const |
Get the value as string More... | |
Static Public Attributes | |
static constexpr DataModel::NodeType | nodeType = DataModel::NodeType::group |
The type of this node More... | |
static constexpr const char * | path { "Temperature" } |
The full path for this value More... | |
static constexpr const char * | name { "Temperature" } |
The name of this value More... | |
static constexpr const char * | description { R"description(Current temperature(s))description" } |
The description for this value More... | |
Friends | |
struct | DataModel::Detail::Befriend< Temperature > |
std::ostream & | operator<< (std::ostream &stream, const Temperature &value) |
Operator to send the value as string to a stream More... | |
Current temperature(s)
Zivid::CameraState::Temperature::Temperature | ( | ) |
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 Temperature
then invoking set(args)
.
The provided arguments must be descendants of Temperature
. These types can be provided:
|
inline |
Returns a copy of this object with the given argument(s) set to the new value(s)
Creates a copy of this Temperature 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 Temperature
. 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 |
bool Zivid::CameraState::Temperature::operator!= | ( | const Temperature & | other | ) | const |
Inequality operator
bool Zivid::CameraState::Temperature::operator== | ( | const Temperature & | 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 Temperature
. These types can be provided:
|
inline |
Set DMD
|
inline |
Set General
|
inline |
Set LED
|
inline |
Set Lens
|
inline |
Set PCB
std::string Zivid::CameraState::Temperature::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