open62541++ 0.13.0
C++ wrapper of open62541
Loading...
Searching...
No Matches
Public Member Functions | List of all members
opcua::DiagnosticInfo Class Reference

#include <Builtin.h>

Inheritance diagram for opcua::DiagnosticInfo:
[legend]

Detailed Description

UA_DiagnosticInfo wrapper class.

See also
https://reference.opcfoundation.org/Core/Part4/v105/docs/7.12

Definition at line 319 of file Builtin.h.

Public Member Functions

bool hasSymbolicId () const noexcept
 
bool hasNamespaceUri () const noexcept
 
bool hasLocalizedText () const noexcept
 
bool hasLocale () const noexcept
 
bool hasAdditionalInfo () const noexcept
 
bool hasInnerStatusCode () const noexcept
 
bool hasInnerDiagnosticInfo () const noexcept
 
int32_t getSymbolicId () const noexcept
 
int32_t getNamespaceUri () const noexcept
 
int32_t getLocalizedText () const noexcept
 
int32_t getLocale () const noexcept
 
const StringgetAdditionalInfo () const noexcept
 
StatusCode getInnerStatusCode () const noexcept
 
const DiagnosticInfogetInnerDiagnosticInfo () const noexcept
 
constexpr TypeWrapper ()=default
 
constexpr TypeWrapper (const T &native)
 
constexpr TypeWrapper (T &&native) noexcept
 
constexpr TypeWrapper (const TypeWrapper &other)
 
constexpr TypeWrapper (TypeWrapper &&other) noexcept
 
- Public Member Functions inherited from opcua::TypeWrapper< UA_DiagnosticInfo, UA_TYPES_DIAGNOSTICINFO >
constexpr TypeWrapper ()=default
 
constexpr TypeWrapper (const UA_DiagnosticInfo &native)
 
constexpr TypeWrapper (UA_DiagnosticInfo &&native) noexcept
 
constexpr TypeWrapper (const TypeWrapper &other)
 
constexpr TypeWrapper (TypeWrapper &&other) noexcept
 
 ~TypeWrapper ()
 
constexpr TypeWrapperoperator= (const TypeWrapper &other)
 
constexpr TypeWrapperoperator= (const UA_DiagnosticInfo &native)
 
constexpr TypeWrapperoperator= (TypeWrapper &&other) noexcept
 
constexpr TypeWrapperoperator= (UA_DiagnosticInfo &&native) noexcept
 
constexpr void swap (TypeWrapper &other) noexcept
 
constexpr void swap (UA_DiagnosticInfo &native) noexcept
 
- Public Member Functions inherited from opcua::Wrapper< T >
constexpr Wrapper ()=default
 
constexpr Wrapper (const T &native)
 
constexpr Wrapper (T &&native) noexcept
 
constexpr operator T& () noexcept
 
constexpr operator const T & () const noexcept
 
constexpr T * operator-> () noexcept
 
constexpr const T * operator-> () const noexcept
 
constexpr T * handle () noexcept
 
constexpr const T * handle () const noexcept
 

Additional Inherited Members

- Public Types inherited from opcua::Wrapper< T >
using NativeType = T
 
- Static Public Member Functions inherited from opcua::TypeWrapper< UA_DiagnosticInfo, UA_TYPES_DIAGNOSTICINFO >
static constexpr TypeIndex getTypeIndex ()
 
- Protected Member Functions inherited from opcua::TypeWrapper< UA_DiagnosticInfo, UA_TYPES_DIAGNOSTICINFO >
constexpr void clear () noexcept
 
- Protected Member Functions inherited from opcua::Wrapper< T >
constexpr const T & native () const noexcept
 
constexpr T & native () noexcept
 

Member Function Documentation

◆ hasSymbolicId()

bool opcua::DiagnosticInfo::hasSymbolicId ( ) const
inlinenoexcept

Definition at line 323 of file Builtin.h.

◆ hasNamespaceUri()

bool opcua::DiagnosticInfo::hasNamespaceUri ( ) const
inlinenoexcept

Definition at line 327 of file Builtin.h.

◆ hasLocalizedText()

bool opcua::DiagnosticInfo::hasLocalizedText ( ) const
inlinenoexcept

Definition at line 331 of file Builtin.h.

◆ hasLocale()

bool opcua::DiagnosticInfo::hasLocale ( ) const
inlinenoexcept

Definition at line 335 of file Builtin.h.

◆ hasAdditionalInfo()

bool opcua::DiagnosticInfo::hasAdditionalInfo ( ) const
inlinenoexcept

Definition at line 339 of file Builtin.h.

◆ hasInnerStatusCode()

bool opcua::DiagnosticInfo::hasInnerStatusCode ( ) const
inlinenoexcept

Definition at line 343 of file Builtin.h.

◆ hasInnerDiagnosticInfo()

bool opcua::DiagnosticInfo::hasInnerDiagnosticInfo ( ) const
inlinenoexcept

Definition at line 347 of file Builtin.h.

◆ getSymbolicId()

int32_t opcua::DiagnosticInfo::getSymbolicId ( ) const
inlinenoexcept

Definition at line 351 of file Builtin.h.

◆ getNamespaceUri()

int32_t opcua::DiagnosticInfo::getNamespaceUri ( ) const
inlinenoexcept

Definition at line 355 of file Builtin.h.

◆ getLocalizedText()

int32_t opcua::DiagnosticInfo::getLocalizedText ( ) const
inlinenoexcept

Definition at line 359 of file Builtin.h.

◆ getLocale()

int32_t opcua::DiagnosticInfo::getLocale ( ) const
inlinenoexcept

Definition at line 363 of file Builtin.h.

◆ getAdditionalInfo()

const String & opcua::DiagnosticInfo::getAdditionalInfo ( ) const
inlinenoexcept

Definition at line 367 of file Builtin.h.

◆ getInnerStatusCode()

StatusCode opcua::DiagnosticInfo::getInnerStatusCode ( ) const
inlinenoexcept

Definition at line 371 of file Builtin.h.

◆ getInnerDiagnosticInfo()

const DiagnosticInfo * opcua::DiagnosticInfo::getInnerDiagnosticInfo ( ) const
inlinenoexcept

Definition at line 375 of file Builtin.h.

◆ TypeWrapper() [1/5]

constexpr opcua::TypeWrapper< T, typeIndex >::TypeWrapper ( )
constexprdefault

◆ TypeWrapper() [2/5]

constexpr opcua::TypeWrapper< T, typeIndex >::TypeWrapper ( const T & native)
inlineexplicitconstexpr

Constructor with native object (deep copy).

Definition at line 36 of file TypeWrapper.h.

◆ TypeWrapper() [3/5]

constexpr opcua::TypeWrapper< T, typeIndex >::TypeWrapper ( T && native)
inlineconstexprnoexcept

Constructor with native object (move rvalue).

Definition at line 40 of file TypeWrapper.h.

◆ TypeWrapper() [4/5]

constexpr opcua::TypeWrapper< T, typeIndex >::TypeWrapper ( const TypeWrapper & other)
inlineconstexpr

Copy constructor (deep copy).

Definition at line 48 of file TypeWrapper.h.

◆ TypeWrapper() [5/5]

constexpr opcua::TypeWrapper< T, typeIndex >::TypeWrapper ( TypeWrapper && other)
inlineconstexprnoexcept

Move constructor.

Definition at line 52 of file TypeWrapper.h.