blob: 9161224af3d59eb3e7f54ad736536d1f3f274eb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
File: err_sym10.dat
Date: 29 Mar 2004
no sym-class id present
*/
error-symbols
(file-name err_symbols
,name-space NS_yacco2_err_symbols)
{
"nested-files-exceeded"
(sym-class //LR1_err_nested_files_exceeded
{
user-declaration1
public:
int x_;
LR1_err_nested_files_exceeded(INT Nested_file_cnt,std::string& File_name);
INT nested_cnt(){return nested_cnt_;};
std::string* file_exceeded(){return &file_exceeded_;};
private:
INT nested_cnt_;
std::string file_exceeded_;
***
)
}
|