Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
c_alike.tab.cpp File Reference
#include <string>
#include <stdio.h>

Go to the source code of this file.

Functions

string parseCalike (char const *filename)
 
int yyerror (char *s)
 
int yywrap ()
 
int yylex ()
 

Variables

bool have_yy_error =false
 
int yylineno =0
 

Function Documentation

string parseCalike ( char const *  filename)

Definition at line 5 of file c_alike.tab.cpp.

Referenced by easyDomFactory< configNode >::LoadCalike().

6 {
7  return "";
8 }
int yyerror ( char *  s)

Definition at line 11 of file c_alike.tab.cpp.

References yylineno.

11  {
12  printf("(yy)error: line %d text --\n",yylineno+1);
13 
14  return 1;
15 }
int yylex ( )

Definition at line 22 of file c_alike.tab.cpp.

22  {
23  return 1;
24 }
int yywrap ( )

Definition at line 17 of file c_alike.tab.cpp.

17  {
18  return 1;
19 }

Variable Documentation

bool have_yy_error =false

Definition at line 4 of file c_alike.tab.cpp.

int yylineno =0

Definition at line 10 of file c_alike.tab.cpp.

Referenced by yyerror().