#include <sprk_exchange.h>
|
template<typename T > |
static intptr_t | ClassID () |
|
The ReloadNotifier class is a smart-pointer that is tied to a Component::Reload or a CADModel::Reload. It is used to interact with an ongoing reload.
HPS::Exchange::ReloadNotifier::ReloadNotifier |
( |
| ) |
|
The default constructor creates an ReloadNotifier object which is not tied to any component reload.
HPS::Exchange::ReloadNotifier::ReloadNotifier |
( |
ReloadNotifier const & |
in_that | ) |
|
The copy constructor creates a new ReloadNotifier object that is associated with the same component reload as the source ReloadNotifier.
- Parameters
-
HPS::Exchange::ReloadNotifier::ReloadNotifier |
( |
IONotifier const & |
in_that | ) |
|
The conversion constructor creates a new derived ReloadNotifier object from a base IONotifier object. The copy will only be successful if the source notifier is really an upcast of this notifier type. Otherwise the copy will fail and the resulting ReloadNotifier will be invalid.
- Parameters
-
HPS::Exchange::ReloadNotifier::ReloadNotifier |
( |
ReloadNotifier && |
in_that | ) |
|
The move constructor creates an ReloadNotifier by transferring the underlying object of the rvalue reference to this ReloadNotifier thereby avoiding a copy and allocation.
- Parameters
-
in_that | An rvalue reference to an ReloadNotifier to take the underlying object from. |
void HPS::Exchange::ReloadNotifier::Assign |
( |
ReloadNotifier const & |
in_that | ) |
|
HPS::Type HPS::Exchange::ReloadNotifier::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 HPS::IONotifier.
The move assignment operator transfers the underlying object of the rvalue reference to this ReloadNotifier thereby avoiding a copy.
- Parameters
-
in_that | An rvalue reference to an ReloadNotifier to take the underlying object from. |
- Returns
- A reference to this ReloadNotifier.
The documentation for this class was generated from the following file: