arsa  2.7
IMemoryReadFile.h
Go to the documentation of this file.
1 // Copyright Michael Zeilfelder
2 // This file is part of the "Irrlicht Engine".
3 // For conditions of distribution and use, see copyright notice in irrlicht.h
4 
5 #ifndef __I_MEMORY_READ_FILE_H_INCLUDED__
6 #define __I_MEMORY_READ_FILE_H_INCLUDED__
7 
8 #include "IReadFile.h"
9 
10 namespace irr
11 {
12 namespace io
13 {
14 
16  class IMemoryReadFile : public IReadFile
17  {
18  public:
20 
25  virtual const void *getBuffer() const = 0;
26  };
27 } // end namespace io
28 } // end namespace irr
29 
30 #endif
31 
Interface providing read access to a file.
Definition: IReadFile.h:18
Everything in the Irrlicht Engine can be found in this namespace.
Definition: CARSADPad.h:6
Interface providing read access to a memory read file.
virtual const void * getBuffer() const =0
Get direct access to internal buffer of memory block used as file.