Codec::operator== Method

Checks whether a Codec equals another codec object or its name equals a specified string.
Syntax:
bool operator==( const Codec& op ) const;
bool operator==( const std::string& op ) const;
bool operator==( const std::wstring& op ) const;

Parameter Description
op

Another codec object or string with which to compare.

Return value:

Value Description
true Both operands are equal.
false The operands are not equal.

See also: Codec, Codec::operator!=

<< Codec