Changed the visibility of sf::Music's virtual functions from private to protected, so that one can derive and customize sf::Music easily

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1548 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-08-11 08:46:52 +00:00
parent ce4a18f1d6
commit fe484591f9

View File

@ -106,7 +106,7 @@ public :
////////////////////////////////////////////////////////////
float GetDuration() const;
private :
protected :
////////////////////////////////////////////////////////////
/// \brief Request a new chunk of audio samples from the stream source
@ -129,6 +129,8 @@ private :
////////////////////////////////////////////////////////////
virtual void OnSeek(float timeOffset);
private :
////////////////////////////////////////////////////////////
// Member data
////////////////////////////////////////////////////////////