File: parser.ih

package info (click to toggle)
filtermail 1.06.00-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,688 kB
  • sloc: cpp: 2,487; fortran: 249; makefile: 106; ansic: 51; sh: 36
file content (33 lines) | stat: -rw-r--r-- 631 bytes parent folder | download | duplicates (2)
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
// Generated by Bisonc++ V6.04.04 on Fri, 17 Mar 2023 09:12:30 +0100

    // Include this file in the sources of the class Parser.

// $insert class.h
#include "parser.h"

#include "../xerr/xerr.ih"

#include "../filter/filter.h"
#include "../log/log.h"

using namespace std;
using namespace FBB;

inline string const &Parser::matched() const
{
    return d_scanner.matched();
}

inline int Parser::lex()
{
    return d_scanner.lex();
}

inline void Parser::print()         
{
}

inline void Parser::exceptionHandler(exception const &exc)         
{
    throw;              // re-implement to handle exceptions thrown by actions
}