AVBlocks for C++
1.9
Audio and Video Software Development Kit
|
Parameter is the base class for named parameters passed to various classes in AVBlocks. More...
Inherits Reference.
Inherited by ByteArrayParameter, FloatParameter, IntParameter, MediaBufferParameter, and StringParameter.
Public Member Functions | |
virtual const char * | name () const =0 |
Returns the parameter name. | |
virtual void | setName (const char *name)=0 |
Sets the parameter name. | |
virtual ParamType::Enum | type () const =0 |
Returns the parameter type. | |
Protected Member Functions | |
~Parameter () | |
This object can be destroyed only by the AVBlocks library. |
Parameter is the base class for named parameters passed to various classes in AVBlocks.
The parameter name is an ANSI string. The parameter content can be a simple value or a complex structure. This is determined by the parameter type.
virtual const char* name | ( | ) | const [pure virtual] |
Returns the parameter name.
virtual void setName | ( | const char * | name | ) | [pure virtual] |
Sets the parameter name.
name | [in] A pointer to zero terminated ANSI string. If NULL it is interpreted as if an empty string is provided. The string pointed by name is copied internally and is not required to be valid after the method returns. |
virtual ParamType::Enum type | ( | ) | const [pure virtual] |
Returns the parameter type.