Nebula
Loading...
Searching...
No Matches
embeddedmemorystream.h
Go to the documentation of this file.
1#pragma once
2//------------------------------------------------------------------------------
11#include "io/memorystream.h"
12
13//------------------------------------------------------------------------------
14namespace IO
15{
17{
19public:
23 virtual ~EmbeddedMemoryStream();
25 virtual bool CanWrite() const;
27 virtual bool Open();
28};
29
30} // namespace IO
31//------------------------------------------------------------------------------
Implements a stream class which reads from an embedded resource.
Definition embeddedmemorystream.h:17
virtual ~EmbeddedMemoryStream()
destructor
Definition embeddedmemorystream.cc:27
__DeclareClass(EmbeddedMemoryStream)
EmbeddedMemoryStream()
constructor
Definition embeddedmemorystream.cc:19
virtual bool CanWrite() const
memory streams support writing
Definition embeddedmemorystream.cc:42
virtual bool Open()
open the stream
Definition embeddedmemorystream.cc:54
Implements a stream class which writes to and reads from system RAM.
Definition memorystream.h:19
Instances of wrapped stream classes.
Definition orientation.cc:10