FrameFilterImpl::addBoolParam Method |
||||||||||||||||||||
Registers a boolean parameter than can be accessed using the methods of IFrameFilter. | ||||||||||||||||||||
Syntax: | protected: void addBoolParam( const std::string& name, tFilterError (T::*getFunc)( bool& ), tFilterError (T::*setFunc)( bool ) ); void addBoolParam( const std::wstring& name, tFilterError (T::*getFunc)( bool& ), tFilterError (T::*setFunc)( bool ) ); |
|||||||||||||||||||
|
||||||||||||||||||||
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::addLongParam, FrameFilterImpl::addFloatParam, FrameFilterImpl::addStringParam, FrameFilterImpl::addDataParam |