TagLib  1.13
asffile.h
Go to the documentation of this file.
1/**************************************************************************
2 copyright : (C) 2005-2007 by Lukáš Lalinský
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_ASFFILE_H
27#define TAGLIB_ASFFILE_H
28
29#include "tag.h"
30#include "tfile.h"
31#include "taglib_export.h"
32#include "asfproperties.h"
33#include "asftag.h"
34
35namespace TagLib {
36
38 namespace ASF {
39
47 {
48 public:
49
57 File(FileName file, bool readProperties = true,
58 Properties::ReadStyle propertiesStyle = Properties::Average);
59
70 File(IOStream *stream, bool readProperties = true,
71 Properties::ReadStyle propertiesStyle = Properties::Average);
72
76 virtual ~File();
77
88 virtual Tag *tag() const;
89
94
99 void removeUnsupportedProperties(const StringList &properties);
100
105
109 virtual Properties *audioProperties() const;
110
116 virtual bool save();
117
125 static bool isSupported(IOStream *stream);
126
127 private:
128 void read();
129
130 class FilePrivate;
131 FilePrivate *d;
132 };
133
134 }
135
136}
137
138#endif
Definition: asffile.h:47
virtual Tag * tag() const
PropertyMap setProperties(const PropertyMap &)
static bool isSupported(IOStream *stream)
File(IOStream *stream, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average)
virtual bool save()
void removeUnsupportedProperties(const StringList &properties)
virtual Properties * audioProperties() const
PropertyMap properties() const
File(FileName file, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average)
An implementation of ASF audio properties.
Definition: asfproperties.h:39
Definition: asftag.h:42
ReadStyle
Definition: audioproperties.h:53
A file class with some useful methods for tag manipulation.
Definition: tfile.h:51
An abstract class that provides operations on a sequence of bytes.
Definition: tiostream.h:63
A map for format-independent <key,valuelist> tag representations.
Definition: tpropertymap.h:119
A list of strings.
Definition: tstringlist.h:46
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
const char * FileName
Definition: tiostream.h:57
#define TAGLIB_EXPORT
Definition: taglib_export.h:40