|
Synergy Color Management Component - SDK -
2018.0.80
|
GPU Adaptor smart pointer. More...
Public Member Functions | |
| GPUAdaptorPtr () | |
| Empty constructor. More... | |
| GPUAdaptorPtr (GPUAdaptor *pAdaptor) | |
| Initialization Constructor. More... | |
| ~GPUAdaptorPtr () | |
| Destructor. More... | |
| const GPUAdaptor * | operator-> () const |
| Constant dereferencing operator. More... | |
| GPUAdaptor * | operator-> () |
| Dereferencing operator. More... | |
| const GPUAdaptor * | get () const |
| Get the constant instance pointer. More... | |
| GPUAdaptor * | get () |
| Get the instance pointer. More... | |
| GPUAdaptorPtr (const GPUAdaptorPtr &rhs) | |
| Copy constructor. More... | |
| GPUAdaptorPtr & | operator= (const GPUAdaptorPtr &rhs) |
| Equality operator. More... | |
| GPUAdaptorPtr & | operator= (GPUAdaptor *rhs) |
| Equality operator. More... | |
Private Attributes | |
| void * | _pImpl |
| Opaque smart pointer data. More... | |
GPU Adaptor smart pointer.
Class that manages sharing of GPU adaptor instances. Implements a shared pointer where only the last instance holding a specific GPUAdaptor instance will delete it.
| SYNCOLOR::GPUAdaptorPtr::GPUAdaptorPtr | ( | ) |
Empty constructor.
|
explicit |
Initialization Constructor.
| pAdaptor | GPUAdaptor pointer to manage. |
| SYNCOLOR::GPUAdaptorPtr::~GPUAdaptorPtr | ( | ) |
Destructor.
If no other GPUAdaptorPtr shares the underlying pointer, the GPUAdaptor is deleted.
| SYNCOLOR::GPUAdaptorPtr::GPUAdaptorPtr | ( | const GPUAdaptorPtr & | rhs | ) |
Copy constructor.
The resulting GPUAdaptorPtr shares the instance pointer with the GPUAdaptorPtr passed as argument.
| rhs | GPUAdaptorPtr containing the pointer to share. |
| const GPUAdaptor* SYNCOLOR::GPUAdaptorPtr::operator-> | ( | ) | const |
Constant dereferencing operator.
| GPUAdaptor* SYNCOLOR::GPUAdaptorPtr::operator-> | ( | ) |
Dereferencing operator.
| const GPUAdaptor* SYNCOLOR::GPUAdaptorPtr::get | ( | ) | const |
Get the constant instance pointer.
| GPUAdaptor* SYNCOLOR::GPUAdaptorPtr::get | ( | ) |
Get the instance pointer.
| GPUAdaptorPtr& SYNCOLOR::GPUAdaptorPtr::operator= | ( | const GPUAdaptorPtr & | rhs | ) |
Equality operator.
The resulting GPUAdaptorPtr shares the instance pointer with the GPUAdaptorPtr passed as argument.
| rhs | Constant GPUAdaptorPtr to share. |
| GPUAdaptorPtr& SYNCOLOR::GPUAdaptorPtr::operator= | ( | GPUAdaptor * | rhs | ) |
Equality operator.
The resulting GPUAdaptorPtr shares the instance pointer with the GPUAdaptorPtr passed as argument.
| rhs | GPUAdaptorPtr to share. |
|
private |
Opaque smart pointer data.