HPS::Exchange::ReloadNotifier

class HPS.Exchange.ReloadNotifier : public HPS.IONotifier

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.

Public Functions

void Assign (HPS.Exchange.ReloadNotifier in_that)

Associate this ReloadNotifier with the same component reload as the source ReloadNotifier.

Param in_that

The source ReloadNotifier for the assignment.

override void Dispose ()
override HPS.Type ObjectType ()

This function returns the type the object, as declared (if the object is derived, this does not give the true type of the derived object).

Return

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

ReloadNotifier ()

The default constructor creates an ReloadNotifier object which is not tied to any component reload.

ReloadNotifier (HPS.Exchange.ReloadNotifier in_that)

The copy constructor creates a new ReloadNotifier object that is associated with the same component reload as the source ReloadNotifier.

Param in_that

The source ReloadNotifier to copy.

ReloadNotifier (HPS.IONotifier 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.

Param in_that

The source IONotifier to copy.