some improvements i think
This commit is contained in:
18
public/tier3/lexer.h
Normal file
18
public/tier3/lexer.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef BRB_LEXER_H
|
||||
#define BRB_LEXER_H
|
||||
|
||||
#include "tier0/platform.h"
|
||||
|
||||
abstract_class ILexerWord
|
||||
{
|
||||
public:
|
||||
virtual int GetType() = 0;
|
||||
};
|
||||
|
||||
abstract_class ILexer
|
||||
{
|
||||
public:
|
||||
virtual ILexerWord *ParseTokens( CUtlVector<Token_t> tokens ) = 0;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user