summaryrefslogtreecommitdiff
path: root/include/SFML/Audio/SoundBuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/SFML/Audio/SoundBuffer.hpp')
-rw-r--r--include/SFML/Audio/SoundBuffer.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/SFML/Audio/SoundBuffer.hpp b/include/SFML/Audio/SoundBuffer.hpp
index 5aaa4ca..b2f8b29 100644
--- a/include/SFML/Audio/SoundBuffer.hpp
+++ b/include/SFML/Audio/SoundBuffer.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2018 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2023 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.
@@ -267,15 +267,15 @@ private:
////////////////////////////////////////////////////////////
// Types
////////////////////////////////////////////////////////////
- typedef std::set<Sound*> SoundList; ///< Set of unique sound instances
+ typedef std::set<Sound*> SoundList; //!< Set of unique sound instances
////////////////////////////////////////////////////////////
// Member data
////////////////////////////////////////////////////////////
- unsigned int m_buffer; ///< OpenAL buffer identifier
- std::vector<Int16> m_samples; ///< Samples buffer
- Time m_duration; ///< Sound duration
- mutable SoundList m_sounds; ///< List of sounds that are using this buffer
+ unsigned int m_buffer; //!< OpenAL buffer identifier
+ std::vector<Int16> m_samples; //!< Samples buffer
+ Time m_duration; //!< Sound duration
+ mutable SoundList m_sounds; //!< List of sounds that are using this buffer
};
} // namespace sf