19 lines
420 B
C++
19 lines
420 B
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Audio module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#include <Nazara/Audio/SoundStream.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
/*!
|
|
* \ingroup audio
|
|
* \class Nz::SoundStream
|
|
* \brief Audio class that represents a sound stream
|
|
*
|
|
* \remark This class is abstract
|
|
*/
|
|
|
|
SoundStream::~SoundStream() = default;
|
|
}
|