TagLib 1.8.0 (ownershipframe.h Source File)
Home
Class Hierarchy
Namespaces
Classes
Headers
Namespace Members
Class Members
File Members
taglib
mpeg
id3v2
frames
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
43
class
TAGLIB_EXPORT
OwnershipFrame
:
public
Frame
44
{
45
friend
class
FrameFactory
;
46
47
public
:
51
explicit
OwnershipFrame
(
String::Type
encoding =
String::Latin1
);
52
56
explicit
OwnershipFrame
(
const
ByteVector
&data);
57
61
virtual
~
OwnershipFrame
();
62
68
virtual
String
toString()
const
;
69
75
String
datePurchased()
const
;
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
120
String::Type
textEncoding()
const
;
121
129
void
setTextEncoding(
String::Type
encoding);
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);
142
OwnershipFrame
(
const
OwnershipFrame
&);
143
OwnershipFrame
&operator=(
const
OwnershipFrame
&);
144
145
class
OwnershipFramePrivate;
146
OwnershipFramePrivate *d;
147
};
148
149
}
150
}
151
#endif