TagLib  1.13.1
ownershipframe.h
Go to the documentation of this file.
1 /***************************************************************************
2  copyright : (C) 2012 by Rupert Daniel
3  email : rupert@cancelmonday.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_OWNERSHIPFRAME_H
27 #define TAGLIB_OWNERSHIPFRAME_H
28 
29 #include "id3v2frame.h"
30 #include "taglib_export.h"
31 
32 namespace TagLib {
33 
34  namespace ID3v2 {
35 
37 
44  {
45  friend class FrameFactory;
46 
47  public:
52 
56  explicit OwnershipFrame(const ByteVector &data);
57 
61  virtual ~OwnershipFrame();
62 
68  virtual String toString() const;
69 
76 
82  void setDatePurchased(const String &datePurchased);
83 
89  String pricePaid() const;
90 
96  void setPricePaid(const String &pricePaid);
97 
103  String seller() const;
104 
110  void setSeller(const String &seller);
111 
121 
130 
131  protected:
132  // Reimplementations.
133 
134  virtual void parseFields(const ByteVector &data);
135  virtual ByteVector renderFields() const;
136 
137  private:
141  OwnershipFrame(const ByteVector &data, Header *h);
143  OwnershipFrame &operator=(const OwnershipFrame &);
144 
145  class OwnershipFramePrivate;
146  OwnershipFramePrivate *d;
147  };
148 
149  } // namespace ID3v2
150 } // namespace TagLib
151 #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 "ownership".
Definition: ownershipframe.h:44
OwnershipFrame(const ByteVector &data)
void setPricePaid(const String &pricePaid)
virtual void parseFields(const ByteVector &data)
void setSeller(const String &seller)
virtual ByteVector renderFields() const
void setTextEncoding(String::Type encoding)
OwnershipFrame(String::Type encoding=String::Latin1)
String::Type textEncoding() const
virtual String toString() const
void setDatePurchased(const String &datePurchased)
A wide string class suitable for unicode.
Definition: tstring.h:85
Type
Definition: tstring.h:97
@ Latin1
Definition: tstring.h:101
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
#define TAGLIB_EXPORT
Definition: taglib_export.h:40