summaryrefslogtreecommitdiff
path: root/include/SFML/Audio/SoundSource.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/SFML/Audio/SoundSource.hpp')
-rw-r--r--include/SFML/Audio/SoundSource.hpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/SFML/Audio/SoundSource.hpp b/include/SFML/Audio/SoundSource.hpp
index cde0a3b..83d5e8c 100644
--- a/include/SFML/Audio/SoundSource.hpp
+++ b/include/SFML/Audio/SoundSource.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2015 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2016 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
@@ -240,6 +240,16 @@ public:
////////////////////////////////////////////////////////////
float getAttenuation() const;
+ ////////////////////////////////////////////////////////////
+ /// \brief Overload of assignment operator
+ ///
+ /// \param right Instance to assign
+ ///
+ /// \return Reference to self
+ ///
+ ////////////////////////////////////////////////////////////
+ SoundSource& operator =(const SoundSource& right);
+
protected:
////////////////////////////////////////////////////////////