-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.h
46 lines (30 loc) · 1.02 KB
/
parser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/***********************************************************************\
*
* Contents:
* Systems: all
*
\***********************************************************************/
/****************************** Includes *******************************/
/****************** Conditional compilation switches *******************/
/***************************** Constants *******************************/
/***************************** Datatypes *******************************/
/***************************** Variables *******************************/
/***************************** Forwards ********************************/
/***************************** Functions *******************************/
#ifndef __PARSER__
#define __PARSER__
#include "scanner.h"
#include "location.h"
#include "ast.h"
namespace FSM
{
class Parser
{
public:
Parser(const std::string &inputFilePath, FSM::Scanner &scanner, FSM::AST &ast, bool debug);
void parse();
private:
};
} // namespace FSM
#endif // __PARSER__
/* end of file */