#ifndef LEXER_HH
#define LEXER_HH LEXER_HH
/*struct declarations. Definitions are in .h*/
struct token;
struct token_vector;
struct define_directive;
struct Source_Name;
struct Source_File;
struct Lexer_Data;
enum Automata_View
{
AUTOMATA_VIEW_NORMAL,
AUTOMATA_VIEW_PREPROCESSING_DIRECTIVE,
AUTOMATA_VIEW_END
};
#endif