open62541pp 0.17.0
C++ wrapper of open62541
Loading...
Searching...
No Matches
opcua::ua::ContentFilterElement Class Reference

#include <types.hpp>

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

Detailed Description

UA_ContentFilterElement wrapper class.

ContentFilterElements compose a filter criteria with an operator and its operands. ContentFilterElements can be composed to ContentFilter objects with the &&/|| operators and negated with the ! operator.

See also
https://reference.opcfoundation.org/Core/Part4/v105/docs/7.7.1
https://reference.opcfoundation.org/Core/Part4/v105/docs/B.1

Definition at line 1826 of file types.hpp.

Public Member Functions

 ContentFilterElement (FilterOperator filterOperator, Span< const FilterOperand > operands)
 
FilterOperator filterOperator () const noexcept
 
FilterOperator getFilterOperator () const noexcept
 
Span< const ExtensionObjectfilterOperands () const noexcept
 
Span< ExtensionObjectfilterOperands () noexcept
 
Span< const ExtensionObjectgetFilterOperands () const noexcept
 
Span< ExtensionObjectgetFilterOperands () 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_ContentFilterElement, UA_TYPES_CONTENTFILTERELEMENT >
constexpr TypeWrapper () noexcept=default
 
constexpr TypeWrapper (const UA_ContentFilterElement &native)
 
constexpr TypeWrapper (UA_ContentFilterElement &&native) noexcept
 
constexpr TypeWrapper (const TypeWrapper &other)
 
constexpr TypeWrapper (TypeWrapper &&other) noexcept
 
 ~TypeWrapper ()
 
constexpr TypeWrapperoperator= (const TypeWrapper &other)
 
constexpr TypeWrapperoperator= (const UA_ContentFilterElement &native)
 
constexpr TypeWrapperoperator= (TypeWrapper &&other) noexcept
 
constexpr TypeWrapperoperator= (UA_ContentFilterElement &&native) noexcept
 
- Public Member Functions inherited from opcua::Wrapper< UA_ContentFilterElement >
constexpr Wrapper () noexcept=default
 
constexpr Wrapper (const UA_ContentFilterElement &native) noexcept
 
constexpr Wrapper (UA_ContentFilterElement &&native) noexcept
 
constexpr Wrapperoperator= (const UA_ContentFilterElement &native) noexcept
 
constexpr Wrapperoperator= (UA_ContentFilterElement &&native) noexcept
 
constexpr operator UA_ContentFilterElement & () noexcept
 
constexpr operator const UA_ContentFilterElement & () const noexcept
 
constexpr UA_ContentFilterElementoperator-> () noexcept
 
constexpr const UA_ContentFilterElementoperator-> () const noexcept
 
constexpr UA_ContentFilterElementhandle () noexcept
 
constexpr const UA_ContentFilterElementhandle () const noexcept
 
constexpr void swap (Wrapper &other) noexcept
 
constexpr void swap (UA_ContentFilterElement &native) noexcept
 

Related Symbols

(Note that these are not member symbols.)

ContentFilter operator! (const ContentFilterElement &filterElement)
 
ContentFilter operator&& (const ContentFilterElement &lhs, const ContentFilterElement &rhs)
 
ContentFilter operator&& (const ContentFilter &lhs, const ContentFilterElement &rhs)
 
ContentFilter operator|| (const ContentFilterElement &lhs, const ContentFilterElement &rhs)
 
ContentFilter operator|| (const ContentFilter &lhs, const ContentFilterElement &rhs)
 

Additional Inherited Members

- Public Types inherited from opcua::Wrapper< UA_ContentFilterElement >
using NativeType
 
- Static Public Member Functions inherited from opcua::TypeWrapper< UA_ContentFilterElement, UA_TYPES_CONTENTFILTERELEMENT >
static constexpr TypeIndex typeIndex ()
 
- Protected Member Functions inherited from opcua::TypeWrapper< UA_ContentFilterElement, UA_TYPES_CONTENTFILTERELEMENT >
constexpr void clear () noexcept
 
- Protected Member Functions inherited from opcua::Wrapper< UA_ContentFilterElement >
constexpr const UA_ContentFilterElementnative () const noexcept
 
constexpr UA_ContentFilterElementnative () noexcept
 

Constructor & Destructor Documentation

◆ ContentFilterElement()

opcua::ua::ContentFilterElement::ContentFilterElement ( FilterOperator filterOperator,
Span< const FilterOperand > operands )

Member Function Documentation

◆ filterOperator()

FilterOperator opcua::ua::ContentFilterElement::filterOperator ( ) const
inlinenoexcept

Definition at line 1833 of file types.hpp.

◆ getFilterOperator()

FilterOperator opcua::ua::ContentFilterElement::getFilterOperator ( ) const
inlinenoexcept
Deprecated
Use filterOperator instead

Definition at line 1833 of file types.hpp.

◆ filterOperands() [1/2]

Span< const ExtensionObject > opcua::ua::ContentFilterElement::filterOperands ( ) const
inlinenoexcept

Definition at line 1834 of file types.hpp.

◆ filterOperands() [2/2]

Span< ExtensionObject > opcua::ua::ContentFilterElement::filterOperands ( )
inlinenoexcept

Definition at line 1834 of file types.hpp.

◆ getFilterOperands() [1/2]

Span< const ExtensionObject > opcua::ua::ContentFilterElement::getFilterOperands ( ) const
inlinenoexcept
Deprecated
Use filterOperands instead

Definition at line 1834 of file types.hpp.

◆ getFilterOperands() [2/2]

Span< ExtensionObject > opcua::ua::ContentFilterElement::getFilterOperands ( )
inlinenoexcept
Deprecated
Use filterOperands instead

Definition at line 1834 of file types.hpp.

◆ TypeWrapper() [1/5]

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

◆ TypeWrapper() [2/5]

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]

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]

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

Copy constructor (deep copy).

Definition at line 43 of file typewrapper.hpp.

◆ TypeWrapper() [5/5]

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

Move constructor.

Definition at line 47 of file typewrapper.hpp.