Merge github.com:eclipse/titan.core
[deliverable/titan.core.git] / compiler2 / asn1 / asn1.hh
CommitLineData
d44e3c4f 1/******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Balasko, Jeno
10 * Forstner, Matyas
11 * Szabo, Janos Zoltan – initial implementation
12 *
13 ******************************************************************************/
970ed795
EL
14#ifndef _ASN1_HH
15#define _ASN1_HH
16
17/**
18 * Call this before using ASN stuff.
19 */
20extern void asn1_init();
21/**
22 * Call this after finishing using ASN stuff.
23 */
24extern void asn1_free();
25/**
26 * Parse the file given by \a filename.
27 */
28extern int asn1_parse_file(const char* filename, boolean generate_code);
29/**
30 * Set to non-zero to print lof of parsing debug messages to stderr.
31 */
32extern int asn1_yydebug;
33
34/*
35
36#include "../AST.hh"
37
38extern unsigned verb_level=7;
39extern int force_overwrite, parse_only, generate_BER;
40extern Common::Modules *modules;
41
42*/
43
44#endif // _ASN1_HH
This page took 0.025866 seconds and 5 git commands to generate.