Mantid
|
This is the class for the notification that is to be sent when a value has been changed in config service. More...
#include <ConfigService.h>
Public Member Functions | |
const std::string & | curValue () const |
The new value for the property. More... | |
const std::string & | key () const |
The name of the user property that has changed, as it appears in the user.properties file. More... | |
const std::string & | preValue () const |
The previous value for the property. More... | |
ValueChanged (const std::string &name, const std::string &newvalue, const std::string &prevvalue) | |
Creates the Notification object with the required values. More... | |
Public Member Functions inherited from Mantid::Kernel::ConfigServiceImpl::ConfigServiceNotification | |
ConfigServiceNotification () | |
Empty constructor for ConfigServiceNotification Base Class. More... | |
Private Attributes | |
std::string | m_name |
The name of the changed the property. More... | |
std::string | m_prev |
The previous value for the property. More... | |
std::string | m_value |
The new value for the property. More... | |
This is the class for the notification that is to be sent when a value has been changed in config service.
Definition at line 81 of file ConfigService.h.
|
inline |
Creates the Notification object with the required values.
name | :: property that has been changed |
newvalue | :: new value of property |
prevvalue | :: previous value of property |
Definition at line 88 of file ConfigService.h.
|
inline |
The new value for the property.
Definition at line 94 of file ConfigService.h.
References m_value.
|
inline |
The name of the user property that has changed, as it appears in the user.properties file.
Definition at line 92 of file ConfigService.h.
|
inline |
The previous value for the property.
Definition at line 96 of file ConfigService.h.
|
private |
The name of the changed the property.
Definition at line 98 of file ConfigService.h.
|
private |
The previous value for the property.
Definition at line 100 of file ConfigService.h.
|
private |
The new value for the property.
Definition at line 99 of file ConfigService.h.