FrameFilterImpl::addStringParam Method |
||||||||||||||||||||
Registers a string parameter than can be accessed using the methods of IFrameFilter. | ||||||||||||||||||||
Syntax: | protected: void addStringParam( const std::string& name, tFilterError (T::*getFunc)( _bstr_t& ), tFilterError (T::*setFunc)( _bstr_t ) ); void addStringParam( const std::wstring& name, tFilterError (T::*getFunc)( _bstr_t& ), tFilterError (T::*setFunc)( _bstr_t ) ); |
|||||||||||||||||||
|
||||||||||||||||||||
Remarks: | You should register all parameters of your frame filter in your constructor. |
|||||||||||||||||||
Example: | For an example how to register a parameter, see addFloatParam. |
|||||||||||||||||||
See also: | FrameFilterImpl, FrameFilterImpl::addBoolParam, FrameFilterImpl::addLongParam, FrameFilterImpl::addFloatParam, FrameFilterImpl::addDataParam |