TagLib  2.2.1
ebmlmktags.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This library is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU Lesser General Public License version *
4  * 2.1 as published by the Free Software Foundation. *
5  * *
6  * This library is distributed in the hope that it will be useful, but *
7  * WITHOUT ANY WARRANTY; without even the implied warranty of *
8  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
9  * Lesser General Public License for more details. *
10  * *
11  * You should have received a copy of the GNU Lesser General Public *
12  * License along with this library; if not, write to the Free Software *
13  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
14  * 02110-1301 USA *
15  * *
16  * Alternatively, this file is available under the Mozilla Public *
17  * License Version 1.1. You may obtain a copy of the License at *
18  * http://www.mozilla.org/MPL/ *
19  ***************************************************************************/
20 
21 #ifndef TAGLIB_EBMLMKTAGS_H
22 #define TAGLIB_EBMLMKTAGS_H
23 #ifndef DO_NOT_DOCUMENT
24 
25 #include "ebmlmasterelement.h"
26 #include "taglib.h"
27 
28 namespace TagLib {
29  namespace Matroska {
30  class Tag;
31  }
32 
33  namespace EBML {
34  class MkTags : public MasterElement
35  {
36  public:
37  MkTags(int sizeLength, offset_t dataSize, offset_t offset);
38  MkTags(Id, int sizeLength, offset_t dataSize, offset_t offset);
39  MkTags();
40 
41  std::unique_ptr<Matroska::Tag> parse() const;
42  };
43  }
44 }
45 
46 #endif
47 #endif
off_t offset_t
Definition: taglib.h:64
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41