35#ifndef AAX_IDISPLAYDELEGATEDECORATOR_H
36#define AAX_IDISPLAYDELEGATEDECORATOR_H
170 mWrappedDisplayDelegate(displayDelegate.Clone())
177 mWrappedDisplayDelegate(other.mWrappedDisplayDelegate->Clone())
185 delete mWrappedDisplayDelegate;
197 return mWrappedDisplayDelegate->ValueToString(value, valueString);
203 return mWrappedDisplayDelegate->ValueToString(value, maxNumChars, valueString);
209 return mWrappedDisplayDelegate->StringToValue(valueString, value);
Defines the display behavior for a parameter.
#define AAX_OVERRIDE
override keyword macro
Definition: AAX.h:164
A generic AAX string class with similar functionality to std::string
Definition: AAX_CString.h:57
Definition: AAX_IDisplayDelegate.h:79
The base class for all concrete display delegate decorators.
Definition: AAX_IDisplayDelegateDecorator.h:54
bool StringToValue(const AAX_CString &valueString, T *value) const AAX_OVERRIDE
Converts a string to a real parameter value.
Definition: AAX_IDisplayDelegateDecorator.h:207
~AAX_IDisplayDelegateDecorator() AAX_OVERRIDE
Virtual destructor.
Definition: AAX_IDisplayDelegateDecorator.h:183
AAX_IDisplayDelegateDecorator< T > * Clone() const AAX_OVERRIDE
Constructs and returns a copy of the display delegate decorator.
Definition: AAX_IDisplayDelegateDecorator.h:189
bool ValueToString(T value, AAX_CString *valueString) const AAX_OVERRIDE
Converts a string to a real parameter value.
Definition: AAX_IDisplayDelegateDecorator.h:195