REFERENCE MANUAL
#include <hps.h>
Public Member Functions | |
void | Assign (UpdateNotifier const &in_that) |
Type | ObjectType () const |
UpdateNotifier & | operator= (UpdateNotifier &&in_that) |
UpdateNotifier & | operator= (UpdateNotifier const &in_that) |
Window::UpdateStatus | Status () const |
UpdateNotifier (UpdateNotifier const &in_that) | |
UpdateNotifier (UpdateNotifier &&in_that) | |
void | Wait () const |
![]() | |
virtual bool | Empty () const |
intptr_t | GetClassID () const |
intptr_t | GetInstanceID () const |
bool | HasType (Type in_mask) const |
Object (Object &&in_that) | |
Object & | operator= (Object const &other_object) |
Object & | operator= (Object &&in_that) |
virtual void | Reset () |
Type | Type () 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.
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 UpdateNotifier::Assign | ( | UpdateNotifier const & | in_that | ) |
Share the smart-pointer.
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from Object.
UpdateNotifier& 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& UpdateNotifier::operator= | ( | UpdateNotifier const & | in_that | ) |
Share the smart-pointer.