// 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 namespace Nz { /*! * \ingroup audio * \class Nz::SoundStream * \brief Audio class that represents a sound stream * * \remark This class is abstract */ SoundStream::~SoundStream() = default; }