tagparser/matroska/matroskatagid.cpp

22 lines
545 B
C++
Raw Permalink Normal View History

2015-09-06 19:57:33 +02:00
#include "./matroskatagid.h"
2015-04-22 19:22:01 +02:00
using namespace std;
2020-11-05 19:52:09 +01:00
namespace TagParser {
/*!
* \brief Encapsulates Matroska tag IDs.
* \sa See https://matroska.org/technical/specs/tagging/index.html for a complete list of the officially supported Matroska tag names.
*/
2015-04-22 19:22:01 +02:00
namespace MatroskaTagIds {
2020-11-05 19:52:09 +01:00
/*!
* \brief Encapsulates track-specific Matroska tag IDs written by mkvmerge 7.0.0 or newer.
* \sa https://github.com/mbunkus/mkvtoolnix/wiki/Automatic-tag-generation
*/
namespace TrackSpecific {
}
2020-11-14 22:58:55 +01:00
} // namespace MatroskaTagIds
2015-04-22 19:22:01 +02:00
2018-03-07 01:17:50 +01:00
} // namespace TagParser