Tag Parser
9.2.0
C++ library for reading and writing MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags
|
Go to the source code of this file.
Classes | |
class | TagParser::DiagMessage |
The DiagMessage class holds an information, warning or error gathered during parsing or making. More... | |
class | TagParser::Diagnostics |
The Diagnostics class is a container for DiagMessage. More... | |
Namespaces | |
TagParser | |
Contains all classes and functions of the TagInfo library. | |
Enumerations | |
enum | TagParser::DiagLevel { TagParser::DiagLevel::None = 0, TagParser::DiagLevel::Debug = 1, TagParser::DiagLevel::Information = 2, TagParser::DiagLevel::Warning = 3, TagParser::DiagLevel::Critical = 4, TagParser::DiagLevel::Fatal = 5 } |
Specifies the level of the diagnostic message. More... | |
Functions | |
TAG_PARSER_EXPORT const char * | TagParser::diagLevelName (DiagLevel diagLevel) |
Returns the string representation of the specified diagLevel. More... | |
constexpr DiagLevel & | TagParser::operator|= (DiagLevel &lhs, const DiagLevel &rhs) |
Sets lhs to rhs if rhs is more critical than lhs and returns lhs. More... | |
Variables | |
constexpr auto | TagParser::worstDiagLevel = DiagLevel::Fatal |
The worst diag level. More... | |