#include <hps.h>
Public Member Functions | |
UpdateNotifier (UpdateNotifier const &in_that) | |
UpdateNotifier (UpdateNotifier &&in_that) | |
UpdateNotifier & | operator= (UpdateNotifier &&in_that) |
HPS::Type | ObjectType () const |
UpdateNotifier & | operator= (UpdateNotifier const &in_that) |
void | Assign (UpdateNotifier const &in_that) |
void | Wait () const |
Window::UpdateStatus | Status () const |
![]() | |
Object (Object const &that) | |
Object & | operator= (Object const &other_object) |
Object (Object &&in_that) | |
Object & | operator= (Object &&in_that) |
HPS::Type | Type () const |
virtual bool | Empty () const |
virtual void | Reset () |
bool | HasType (HPS::Type in_mask) const |
intptr_t | GetClassID () const |
intptr_t | GetInstanceID () const |
Additional Inherited Members | |
![]() | |
template<typename T > | |
static intptr_t | ClassID () |
The UpdateNotifier class is a smart pointer that is tied to a window update. It is a special type of control that is used for synchronizing with an window update status.
HPS::UpdateNotifier::UpdateNotifier | ( | UpdateNotifier && | in_that | ) |
The move constructor creates an UpdateNotifier by transferring the underlying impl of the rvalue reference to this UpdateNotifier thereby avoiding a copy and allocation.
in_that | An rvalue reference to an UpdateNotifier to take the impl from. |
void HPS::UpdateNotifier::Assign | ( | UpdateNotifier const & | in_that | ) |
Share the underlying smart-pointer of the UpdateNotifier source.
in_that | The UpdateNotifier source of the assignment. |
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from HPS::Object.
UpdateNotifier& HPS::UpdateNotifier::operator= | ( | UpdateNotifier && | in_that | ) |
The move assignment operator transfers the underlying impl of the rvalue reference to this UpdateNotifier thereby avoiding a copy.
in_that | An rvalue reference to an UpdateNotifier to take the impl from. |
UpdateNotifier& HPS::UpdateNotifier::operator= | ( | UpdateNotifier const & | in_that | ) |
Share the underlying smart-pointer of the UpdateNotifier source.
in_that | The UpdateNotifier source of the assignment. |