IFrameFilter::ParamDesc Structure | 
|  
			The  ParamDesc  structure, describes a frame filter parameter.
			You can retrieve a tParamArray, containing  ParamDesc 
			structures by calling IFrameFilter::getAvailableParameters.
		 | 
|  Syntax: | 
  | 
struct ParamDesc
{
    wchar_t      name[30];
    tParamType   type;
    wchar_t      typeDesc[30];
    std::string  getTypeDesc() const;
    std::string  getName() const;
};
      
 | 
 | 
 | 
 
 
  |  
|  name | 
 | 
 
						Name of the parameter
					 
 | 
 
|  type | 
 | 
 
						A tParamType  describing the type of the parameter.
					 
 | 
 
|  typeDesc | 
 | 
 
						A string describing the type of the parameter.
					 
 | 
 
|  getTypeDesc | 
 | 
 
						Helper function returning a  std::string  describing the type of the parameter.
					 
 | 
 
|  getName | 
 | 
 
						Helper function returning the parameter name in a  std::string.
					 
 | 
 
  |