Added NzStream and stream options

Former-commit-id: d2c69b12f34fffff4d412111e7af7cc4dbb638a8
This commit is contained in:
Lynix
2012-10-01 00:57:32 +02:00
parent aaca9349fd
commit 07e949404c
7 changed files with 66 additions and 32 deletions

View File

@@ -0,0 +1,18 @@
// Copyright (C) 2012 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/Stream.hpp>
#include <Nazara/Core/Debug.hpp>
NzStream::~NzStream() = default;
unsigned int NzStream::GetStreamOptions() const
{
return m_streamOptions;
}
void NzStream::SetStreamOptions(unsigned int options)
{
m_streamOptions = options;
}