22#ifndef AAX_IDISPLAYDELEGATEDECORATOR_H
23#define AAX_IDISPLAYDELEGATEDECORATOR_H
157 mWrappedDisplayDelegate(displayDelegate.Clone())
164 mWrappedDisplayDelegate(other.mWrappedDisplayDelegate->Clone())
172 delete mWrappedDisplayDelegate;
184 return mWrappedDisplayDelegate->ValueToString(value, valueString);
190 return mWrappedDisplayDelegate->ValueToString(value, maxNumChars, valueString);
196 return mWrappedDisplayDelegate->StringToValue(valueString, value);
Defines the display behavior for a parameter.
#define AAX_OVERRIDE
override keyword macro
Definition: AAX.h:151
A generic AAX string class with similar functionality to std::string
Definition: AAX_CString.h:44
Definition: AAX_IDisplayDelegate.h:66
The base class for all concrete display delegate decorators.
Definition: AAX_IDisplayDelegateDecorator.h:41
bool StringToValue(const AAX_CString &valueString, T *value) const AAX_OVERRIDE
Converts a string to a real parameter value.
Definition: AAX_IDisplayDelegateDecorator.h:194
~AAX_IDisplayDelegateDecorator() AAX_OVERRIDE
Virtual destructor.
Definition: AAX_IDisplayDelegateDecorator.h:170
AAX_IDisplayDelegateDecorator< T > * Clone() const AAX_OVERRIDE
Constructs and returns a copy of the display delegate decorator.
Definition: AAX_IDisplayDelegateDecorator.h:176
bool ValueToString(T value, AAX_CString *valueString) const AAX_OVERRIDE
Converts a string to a real parameter value.
Definition: AAX_IDisplayDelegateDecorator.h:182