Cyclone ISO C++ API Reference Guide
Reference.hpp File Reference

Go to the source code of this file.

Classes

class  dds::core::Reference< DELEGATE >
 Base class for reference-counted objects. More...
 

Namespaces

 dds
 
 dds::core
 

Functions

template<class D >
bool operator!= (dds::core::null_type, const dds::core::Reference< D > &r)
 
template<class D >
bool operator== (dds::core::null_type, const dds::core::Reference< D > &r)
 

Function Documentation

◆ operator!=()

template<class D >
bool operator!= ( dds::core::null_type  ,
const dds::core::Reference< D > &  r 
)

Special operator!= used to check if this reference object does not equal the dds::core::null reference.

The non-null-check can be done like this:

if (dds::core::null != r) {
// Use the dds reference object r
}
Returns
true if this reference is not null.

◆ operator==()

template<class D >
bool operator== ( dds::core::null_type  ,
const dds::core::Reference< D > &  r 
)

Special operator== used to check if this reference object does not equal the dds::core::null reference.

The non-null-check can be done like this:

if (dds::core::null == r) {
// Do not use the dds reference object r in its current state
}
Returns
true if this reference is not null.