arsa  2.7
EReadFileType.h
Go to the documentation of this file.
1 // Copyright (C) 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 __E_READ_FILE_TYPES_H_INCLUDED__
6 #define __E_READ_FILE_TYPES_H_INCLUDED__
7 
8 #include "irrTypes.h"
9 
10 namespace irr
11 {
12 namespace io
13 {
14 
17  {
19  ERFT_READ_FILE = MAKE_IRR_ID('r','e','a','d'),
20 
22  ERFT_MEMORY_READ_FILE = MAKE_IRR_ID('r','m','e','m'),
23 
25  ERFT_LIMIT_READ_FILE = MAKE_IRR_ID('r','l','i','m'),
26 
28  EFIT_UNKNOWN = MAKE_IRR_ID('u','n','k','n')
29  };
30 } // end namespace io
31 } // end namespace irr
32 
33 
34 #endif
Everything in the Irrlicht Engine can be found in this namespace.
Definition: CARSADPad.h:6
#define MAKE_IRR_ID(c0, c1, c2, c3)
ignore VC8 warning deprecated
Definition: irrTypes.h:243
EREAD_FILE_TYPE
An enumeration for different class types implementing IReadFile.
Definition: EReadFileType.h:16