debugger: added help in single mode UI, plus minor fixes
[deliverable/titan.core.git] / core / JSON.cc
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 * Baji, Laszlo
10 * Balasko, Jeno
11 * Baranyi, Botond
12 *
13 ******************************************************************************/
970ed795
EL
14#include "JSON.hh"
15
16// JSON descriptors for base types
17const TTCN_JSONdescriptor_t INTEGER_json_ = { false, NULL, false, NULL };
18
19const TTCN_JSONdescriptor_t FLOAT_json_ = { false, NULL, false, NULL };
20
21const TTCN_JSONdescriptor_t BOOLEAN_json_ = { false, NULL, false, NULL };
22
23const TTCN_JSONdescriptor_t BITSTRING_json_ = { false, NULL, false, NULL };
24
25const TTCN_JSONdescriptor_t HEXSTRING_json_ = { false, NULL, false, NULL };
26
27const TTCN_JSONdescriptor_t OCTETSTRING_json_ = { false, NULL, false, NULL };
28
29const TTCN_JSONdescriptor_t CHARSTRING_json_ = { false, NULL, false, NULL };
30
31const TTCN_JSONdescriptor_t UNIVERSAL_CHARSTRING_json_ = { false, NULL, false, NULL };
32
33const TTCN_JSONdescriptor_t VERDICTTYPE_json_ = { false, NULL, false, NULL };
34
35const TTCN_JSONdescriptor_t GeneralString_json_ = { false, NULL, false, NULL };
36
37const TTCN_JSONdescriptor_t NumericString_json_ = { false, NULL, false, NULL };
38
39const TTCN_JSONdescriptor_t UTF8String_json_ = { false, NULL, false, NULL };
40
41const TTCN_JSONdescriptor_t PrintableString_json_ = { false, NULL, false, NULL };
42
43const TTCN_JSONdescriptor_t UniversalString_json_ = { false, NULL, false, NULL };
44
45const TTCN_JSONdescriptor_t BMPString_json_ = { false, NULL, false, NULL };
46
47const TTCN_JSONdescriptor_t GraphicString_json_ = { false, NULL, false, NULL };
48
49const TTCN_JSONdescriptor_t IA5String_json_ = { false, NULL, false, NULL };
50
51const TTCN_JSONdescriptor_t TeletexString_json_ = { false, NULL, false, NULL };
52
53const TTCN_JSONdescriptor_t VideotexString_json_ = { false, NULL, false, NULL };
54
55const TTCN_JSONdescriptor_t VisibleString_json_ = { false, NULL, false, NULL };
af710487 56
57const TTCN_JSONdescriptor_t ASN_NULL_json_ = { false, NULL, false, NULL };
58
59const TTCN_JSONdescriptor_t OBJID_json_ = { false, NULL, false, NULL };
60
61const TTCN_JSONdescriptor_t ASN_ROID_json_ = { false, NULL, false, NULL };
62
63const TTCN_JSONdescriptor_t ASN_ANY_json_ = { false, NULL, false, NULL };
64
65const TTCN_JSONdescriptor_t ENUMERATED_json_ = { false, NULL, false, NULL };
This page took 0.026579 seconds and 5 git commands to generate.