Sync with 5.3.0
[deliverable/titan.core.git] / core / TTCN3.hh
1 ///////////////////////////////////////////////////////////////////////////////
2 // Copyright (c) 2000-2014 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 /*
9 * Common header file for the Base Library of the TTCN-3 Test Executor
10 *
11 * This file is included from the output files of the TTCN-3 compiler.
12 * You should include this file instead of the individual header files of this
13 * directory in your C++ modules that are linked to the executable test suite.
14 *
15 * Do not modify this file.
16 * Code originally authored by Janos Zoltan Szabo
17 *
18 */
19
20 #ifndef TTCN3_HH
21 #define TTCN3_HH
22
23 #include "version.h"
24 #include <cversion.h>
25
26 #include "Vector.hh"
27 #include "Basetype.hh"
28 #include "Template.hh"
29 #include "Integer.hh"
30 #include "Float.hh"
31 #include "Boolean.hh"
32 #include "ASN_Null.hh"
33 #include "Objid.hh"
34 #include "Verdicttype.hh"
35 #include "Component.hh"
36 #include "Bitstring.hh"
37 #include "Hexstring.hh"
38 #include "Octetstring.hh"
39 #include "ASN_Any.hh"
40 #include "Charstring.hh"
41 #include "Universal_charstring.hh"
42 #include "Struct_of.hh"
43 #include "Optional.hh"
44 #include "Array.hh"
45 #include "ASN_CharacterString.hh"
46 #include "ASN_External.hh"
47 #include "ASN_EmbeddedPDV.hh"
48 #include "Addfunc.hh"
49
50 #include "Timer.hh"
51 #include "Port.hh"
52 #include "Logger.hh"
53
54 #ifdef TITAN_RUNTIME_2
55 #include "RT2/TitanLoggerApiSimple.hh"
56 #include "RT2/PreGenRecordOf.hh"
57 #else
58 #include "RT1/TitanLoggerApiSimple.hh"
59 #include "RT1/PreGenRecordOf.hh"
60 #endif
61
62 #include "Module_list.hh"
63 #include "Parameters.h"
64 #include "Snapshot.hh"
65 #include "Default.hh"
66 #include "Runtime.hh"
67 #include "Encdec.hh"
68 #include "BER.hh"
69 #include "RAW.hh"
70 #include "TEXT.hh"
71 #include "XER.hh"
72 #include "JSON.hh"
73 #include "Error.hh"
74 #include "XmlReader.hh"
75 #include "Profiler.hh"
76
77 #endif
This page took 0.032663 seconds and 5 git commands to generate.