flacfile.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef TAGLIB_FLACFILE_H
00023 #define TAGLIB_FLACFILE_H
00024
00025 #include <tag.h>
00026 #include <tfile.h>
00027 #include <flacproperties.h>
00028
00029 namespace TagLib {
00030
00031 namespace FLAC {
00032
00033 class File : public TagLib::File
00034 {
00035 public:
00036 File(const String &file, bool readProperties = true,
00037 Properties::ReadStyle propertiesStyle = Properties::Average);
00038 virtual ~File();
00039
00045 virtual TagLib::Tag *tag() const;
00046
00051 virtual Properties *audioProperties() const;
00052 virtual void save();
00053
00054 ByteVector streamInfo();
00055 ByteVector vorbisComment();
00056
00057 private:
00058 void read(bool readProperties, Properties::ReadStyle propertiesStyle);
00059
00060 void scan();
00061
00062 class FilePrivate;
00063 FilePrivate *d;
00064 };
00065 }
00066 }
00067
00068 #endif
This file is part of the documentation for TagLib Version 0.95.