< Home

< Table of Contents

REFERENCE MANUAL

UpdateNotifier Class Reference

#include <hps.h>

Inheritance diagram for UpdateNotifier:
Object

Public Member Functions

void Assign (UpdateNotifier const &in_that)
 
Type ObjectType () const
 
UpdateNotifieroperator= (UpdateNotifier &&in_that)
 
UpdateNotifieroperator= (UpdateNotifier const &in_that)
 
Window::UpdateStatus Status () const
 
 UpdateNotifier (UpdateNotifier const &in_that)
 
 UpdateNotifier (UpdateNotifier &&in_that)
 
void Wait () const
 
- Public Member Functions inherited from Object
virtual bool Empty () const
 
intptr_t GetClassID () const
 
intptr_t GetInstanceID () const
 
bool HasType (Type in_mask) const
 
 Object (Object &&in_that)
 
Objectoperator= (Object const &other_object)
 
Objectoperator= (Object &&in_that)
 
virtual void Reset ()
 
Type Type () const
 

Additional Inherited Members

- Static Public Member Functions inherited from Object
template<typename T >
static intptr_t ClassID ()
 

Detailed Description

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.

Constructor & Destructor Documentation

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.

Parameters
in_thatAn rvalue reference to an UpdateNotifier to take the impl from.

Member Function Documentation

void UpdateNotifier::Assign ( UpdateNotifier const &  in_that)

Share the smart-pointer.

Type UpdateNotifier::ObjectType ( ) const
inlinevirtual

This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.

Returns
The declared type of the object in question, which may differ from the true, underlying type.

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.

Parameters
in_thatAn rvalue reference to an UpdateNotifier to take the impl from.
Returns
A reference to this UpdateNotifier.
UpdateNotifier& UpdateNotifier::operator= ( UpdateNotifier const &  in_that)

Share the smart-pointer.


The documentation for this class was generated from the following file: