28 lines
362 B
C++
28 lines
362 B
C++
#ifndef BRB_H
|
|
#define BRB_H
|
|
|
|
#include "tier2/tokenizer.h"
|
|
#include "tier3/lexer.h"
|
|
|
|
#define B_LEXEL_INTERFACE_NAME "BLexer001"
|
|
|
|
|
|
enum EBWordType
|
|
{
|
|
BWORDTYPE_CONST_WORD,
|
|
|
|
BWORDTYPE_FUNCTION,
|
|
BWORDTYPE_FUNCTION_ARGS,
|
|
BWORDTYPE_FUNCTION_ARG,
|
|
BWORDTYPE_FUNCTION_SCOPE,
|
|
|
|
BWORDTYPE_RETURN,
|
|
};
|
|
|
|
abstract_class IBLexerWord: public ILexerWord
|
|
{
|
|
public:
|
|
};
|
|
|
|
#endif
|