fixed compiler crash when passing an empty record as a function parameter (bug 498337)
[deliverable/titan.core.git] / compiler2 / enum.h
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 * Cserveni, Akos
11 * Kremer, Peter
12 * Raduly, Csaba
13 * Szabo, Janos Zoltan – initial implementation
14 *
15 ******************************************************************************/
16 #ifndef ENUM_H
17 #define ENUM_H
18
19 #include "datatypes.h"
20 #include "ttcn3/compiler.h"
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 void defEnumClass(const enum_def *edef, output_struct *output);
27 void defEnumTemplate(const enum_def *edef, output_struct *output);
28
29 #ifdef __cplusplus
30 } /* extern "C" */
31 #endif
32
33 #endif /* ENUM_H */
This page took 0.032379 seconds and 5 git commands to generate.