Fix for VS2010 which had been throwing out "cannot access protected member declared in class 'TagLib::Mod::Properties'" errors.

This commit is contained in:
Graham Perks 2011-07-26 21:43:11 -05:00 committed by Graham Perks
parent 0341079b92
commit 8b647e5fa7
4 changed files with 9 additions and 0 deletions

View File

@ -72,7 +72,10 @@ namespace TagLib {
uchar panningSeparation() const;
uchar pitchWheelDepth() const;
#if !defined(_MSC_VER)
protected:
#endif
void setChannels(int channels);
void setLengthInPatterns(ushort lengthInPatterns);

View File

@ -41,7 +41,9 @@ namespace TagLib {
uint instrumentCount() const;
uchar lengthInPatterns() const;
#if !defined(_MSC_VER)
protected:
#endif
void setChannels(int channels);
void setInstrumentCount(uint sampleCount);

View File

@ -61,7 +61,9 @@ namespace TagLib {
uchar tempo() const;
uchar bpmSpeed() const;
#if !defined(_MSC_VER)
protected:
#endif
void setChannels(int channels);
void setLengthInPatterns (ushort lengthInPatterns);

View File

@ -54,7 +54,9 @@ namespace TagLib {
ushort tempo() const;
ushort bpmSpeed() const;
#if !defined(_MSC_VER)
protected:
#endif
void setChannels(int channels);
void setLengthInPatterns(ushort lengthInPatterns);