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