mirror of
https://github.com/taglib/taglib.git
synced 2025-07-21 14:34:23 -04:00
Mod::File -> Mod::FileBase
This commit is contained in:
@ -42,7 +42,7 @@ public:
|
||||
|
||||
XM::File::File(FileName file, bool readProperties,
|
||||
AudioProperties::ReadStyle propertiesStyle) :
|
||||
Mod::File(file),
|
||||
Mod::FileBase(file),
|
||||
d(new FilePrivate(propertiesStyle))
|
||||
{
|
||||
read(readProperties);
|
||||
@ -50,7 +50,7 @@ XM::File::File(FileName file, bool readProperties,
|
||||
|
||||
XM::File::File(IOStream *stream, bool readProperties,
|
||||
AudioProperties::ReadStyle propertiesStyle) :
|
||||
Mod::File(stream),
|
||||
Mod::FileBase(stream),
|
||||
d(new FilePrivate(propertiesStyle))
|
||||
{
|
||||
read(readProperties);
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "tfile.h"
|
||||
#include "audioproperties.h"
|
||||
#include "taglib_export.h"
|
||||
#include "modfile.h"
|
||||
#include "modfilebase.h"
|
||||
#include "xmtag.h"
|
||||
#include "xmproperties.h"
|
||||
|
||||
@ -35,7 +35,7 @@ namespace TagLib {
|
||||
|
||||
namespace XM {
|
||||
|
||||
class TAGLIB_EXPORT File : public Mod::File {
|
||||
class TAGLIB_EXPORT File : public Mod::FileBase {
|
||||
public:
|
||||
/*!
|
||||
* Contructs a Extended Module file from \a file. If \a readProperties
|
||||
|
Reference in New Issue
Block a user