TagLib API Documentation
ebmldeferredbinaryelement.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_EBMLDEFERREDBINARYELEMENT_H
22#define TAGLIB_EBMLDEFERREDBINARYELEMENT_H
23#ifndef DO_NOT_DOCUMENT
24
25#include "ebmlbinaryelement.h"
26
27namespace TagLib {
28 class File;
29
30 namespace EBML {
42 class DeferredBinaryElement : public BinaryElement
43 {
44 public:
45 DeferredBinaryElement(Id id, int sizeLength, offset_t dataSize);
46 DeferredBinaryElement(Id id, int sizeLength, offset_t dataSize, offset_t);
47 explicit DeferredBinaryElement(Id id);
48
52 bool read(File &file) override;
53
58 bool isDeferred() const;
59
64 offset_t getDataOffset() const;
65
66 private:
67 offset_t dataOffset = 0;
68 bool deferred = false;
69 };
70 }
71}
72
73#endif
74#endif
A namespace for all TagLib related classes and functions.
Definition apefile.h:41
off_t offset_t
Definition taglib.h:64