open62541pp 0.18.0
C++ wrapper of open62541
Loading...
Searching...
No Matches
Public Member Functions | List of all members
opcua::ua::RelativePathElement Class Reference

#include <types.hpp>

Inheritance diagram for opcua::ua::RelativePathElement:
[legend]

Detailed Description

UA_RelativePathElement wrapper class.

Definition at line 1232 of file types.hpp.

Public Member Functions

 RelativePathElement (NodeId referenceTypeId, bool isInverse, bool includeSubtypes, QualifiedName targetName)
 
const NodeIdreferenceTypeId () const noexcept
 
const NodeIdgetReferenceTypeId () const noexcept
 
NodeIdreferenceTypeId () noexcept
 
NodeIdgetReferenceTypeId () noexcept
 
bool isInverse () const noexcept
 
bool getIsInverse () const noexcept
 
bool includeSubtypes () const noexcept
 
bool getIncludeSubtypes () const noexcept
 
const QualifiedNametargetName () const noexcept
 
const QualifiedNamegetTargetName () const noexcept
 
QualifiedNametargetName () noexcept
 
QualifiedNamegetTargetName () noexcept
 
constexpr TypeWrapper () noexcept=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_RelativePathElement, UA_TYPES_RELATIVEPATHELEMENT >
constexpr TypeWrapper () noexcept=default
 
constexpr TypeWrapper (const UA_RelativePathElement &native)
 
constexpr TypeWrapper (UA_RelativePathElement &&native) noexcept
 
constexpr TypeWrapper (const TypeWrapper &other)
 
constexpr TypeWrapper (TypeWrapper &&other) noexcept
 
 ~TypeWrapper ()
 
constexpr TypeWrapperoperator= (const TypeWrapper &other)
 
constexpr TypeWrapperoperator= (const UA_RelativePathElement &native)
 
constexpr TypeWrapperoperator= (TypeWrapper &&other) noexcept
 
constexpr TypeWrapperoperator= (UA_RelativePathElement &&native) noexcept
 
- Public Member Functions inherited from opcua::Wrapper< T >
constexpr Wrapper () noexcept=default
 
constexpr Wrapper (const T &native) noexcept
 
constexpr Wrapper (T &&native) noexcept
 
constexpr Wrapperoperator= (const T &native) noexcept
 
constexpr Wrapperoperator= (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
 
constexpr void swap (Wrapper &other) noexcept
 
constexpr void swap (T &native) noexcept
 

Additional Inherited Members

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

Constructor & Destructor Documentation

◆ RelativePathElement()

opcua::ua::RelativePathElement::RelativePathElement ( NodeId  referenceTypeId,
bool  isInverse,
bool  includeSubtypes,
QualifiedName  targetName 
)
inline

Definition at line 1237 of file types.hpp.

Member Function Documentation

◆ referenceTypeId() [1/2]

const NodeId & opcua::ua::RelativePathElement::referenceTypeId ( ) const
inlinenoexcept

Definition at line 1246 of file types.hpp.

◆ getReferenceTypeId() [1/2]

const NodeId & opcua::ua::RelativePathElement::getReferenceTypeId ( ) const
inlinenoexcept
Deprecated:
Use referenceTypeId instead

Definition at line 1246 of file types.hpp.

◆ referenceTypeId() [2/2]

NodeId & opcua::ua::RelativePathElement::referenceTypeId ( )
inlinenoexcept

Definition at line 1246 of file types.hpp.

◆ getReferenceTypeId() [2/2]

NodeId & opcua::ua::RelativePathElement::getReferenceTypeId ( )
inlinenoexcept
Deprecated:
Use referenceTypeId instead

Definition at line 1246 of file types.hpp.

◆ isInverse()

bool opcua::ua::RelativePathElement::isInverse ( ) const
inlinenoexcept

Definition at line 1247 of file types.hpp.

◆ getIsInverse()

bool opcua::ua::RelativePathElement::getIsInverse ( ) const
inlinenoexcept
Deprecated:
Use isInverse instead

Definition at line 1247 of file types.hpp.

◆ includeSubtypes()

bool opcua::ua::RelativePathElement::includeSubtypes ( ) const
inlinenoexcept

Definition at line 1248 of file types.hpp.

◆ getIncludeSubtypes()

bool opcua::ua::RelativePathElement::getIncludeSubtypes ( ) const
inlinenoexcept
Deprecated:
Use includeSubtypes instead

Definition at line 1248 of file types.hpp.

◆ targetName() [1/2]

const QualifiedName & opcua::ua::RelativePathElement::targetName ( ) const
inlinenoexcept

Definition at line 1249 of file types.hpp.

◆ getTargetName() [1/2]

const QualifiedName & opcua::ua::RelativePathElement::getTargetName ( ) const
inlinenoexcept
Deprecated:
Use targetName instead

Definition at line 1249 of file types.hpp.

◆ targetName() [2/2]

QualifiedName & opcua::ua::RelativePathElement::targetName ( )
inlinenoexcept

Definition at line 1249 of file types.hpp.

◆ getTargetName() [2/2]

QualifiedName & opcua::ua::RelativePathElement::getTargetName ( )
inlinenoexcept
Deprecated:
Use targetName instead

Definition at line 1249 of file types.hpp.

◆ TypeWrapper() [1/5]

constexpr opcua::TypeWrapper< T, Index >::TypeWrapper ( )
constexprdefaultnoexcept

◆ TypeWrapper() [2/5]

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

Constructor with native object (deep copy).

Definition at line 31 of file typewrapper.hpp.

◆ TypeWrapper() [3/5]

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

Constructor with native object (move rvalue).

Definition at line 35 of file typewrapper.hpp.

◆ TypeWrapper() [4/5]

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

Copy constructor (deep copy).

Definition at line 43 of file typewrapper.hpp.

◆ TypeWrapper() [5/5]

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

Move constructor.

Definition at line 47 of file typewrapper.hpp.