TagLib  1.13.1
popularimeterframe.h
Go to the documentation of this file.
1/***************************************************************************
2 copyright : (C) 2008 by Lukas Lalinsky
3 email : lalinsky@gmail.com
4 ***************************************************************************/
5
6/***************************************************************************
7 * This library is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU Lesser General Public License version *
9 * 2.1 as published by the Free Software Foundation. *
10 * *
11 * This library is distributed in the hope that it will be useful, but *
12 * WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14 * Lesser General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU Lesser General Public *
17 * License along with this library; if not, write to the Free Software *
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
19 * 02110-1301 USA *
20 * *
21 * Alternatively, this file is available under the Mozilla Public *
22 * License Version 1.1. You may obtain a copy of the License at *
23 * http://www.mozilla.org/MPL/ *
24 ***************************************************************************/
25
26#ifndef TAGLIB_POPULARIMETERFRAME_H
27#define TAGLIB_POPULARIMETERFRAME_H
28
29#include "id3v2frame.h"
30#include "taglib_export.h"
31
32namespace TagLib {
33
34 namespace ID3v2 {
35
37
44 {
45 friend class FrameFactory;
46
47 public:
52
56 explicit PopularimeterFrame(const ByteVector &data);
57
62
68 virtual String toString() const;
69
75 String email() const;
76
82 void setEmail(const String &email);
83
89 int rating() const;
90
96 void setRating(int rating);
97
103 unsigned int counter() const;
104
110 void setCounter(unsigned int counter);
111
112 protected:
113 // Reimplementations.
114
115 virtual void parseFields(const ByteVector &data);
116 virtual ByteVector renderFields() const;
117
118 private:
122 PopularimeterFrame(const ByteVector &data, Header *h);
124 PopularimeterFrame &operator=(const PopularimeterFrame &);
125
126 class PopularimeterFramePrivate;
127 PopularimeterFramePrivate *d;
128 };
129
130 } // namespace ID3v2
131} // namespace TagLib
132#endif
A byte vector.
Definition tbytevector.h:46
A factory for creating ID3v2 frames during parsing.
Definition id3v2framefactory.h:66
ID3v2 frame implementation.
Definition id3v2frame.h:55
An implementation of ID3v2 headers.
Definition id3v2header.h:49
An implementation of ID3v2 "popularimeter".
Definition popularimeterframe.h:44
PopularimeterFrame(const ByteVector &data)
unsigned int counter() const
virtual ByteVector renderFields() const
void setEmail(const String &email)
virtual String toString() const
void setCounter(unsigned int counter)
virtual void parseFields(const ByteVector &data)
A wide string class suitable for unicode.
Definition tstring.h:85
A namespace for all TagLib related classes and functions.
Definition apefile.h:41
#define TAGLIB_EXPORT
Definition taglib_export.h:40