Core: Add EmptyStream class

This commit is contained in:
Lynix
2019-12-29 16:25:40 +01:00
parent ea8b71407e
commit 35cf05e3bc
4 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
// Copyright (C) 2019 Jérôme Leclercq
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Core/EmptyStream.hpp>
#include <Nazara/Core/Debug.hpp>
namespace Nz
{
/*!
* \ingroup core
* \class Nz::EmptyStream
* \brief Constructs an EmptyStream object by default
*/
inline EmptyStream::EmptyStream() :
m_size(0)
{
}
}
#include <Nazara/Core/DebugOff.hpp>