home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2006 March
/
Gamestar_82_2006-03_dvd.iso
/
DVDStar
/
Editace
/
quake4_sdkv10.exe
/
source
/
idlib
/
LexerFactory.h
< prev
next >
Wrap
C/C++ Source or Header
|
2005-11-14
|
470b
|
22 lines
#ifndef __LEXERFACTORY_H__
#define __LEXERFACTORY_H__
class LexerFactory
{
public:
static Lexer *MakeLexer( int flags );
static Lexer *MakeLexer( char const * const filename, int flags = 0, bool OSPath = false );
static Lexer *MakeLexer( char const * const ptr, int length, char const * const name, int flags = 0 );
private:
static int GetReadBinary();
static int GetWriteBinary();
// disallow default constructor
LexerFactory();
~LexerFactory();
};
#endif