Merge pull request #83 from eadrkir/master
[deliverable/titan.core.git] / core / JSON.cc
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 ******************************************************************************/
14 #include "JSON.hh"
15
16 // JSON descriptors for base types
17 const TTCN_JSONdescriptor_t INTEGER_json_ = { false, NULL, false, NULL };
18
19 const TTCN_JSONdescriptor_t FLOAT_json_ = { false, NULL, false, NULL };
20
21 const TTCN_JSONdescriptor_t BOOLEAN_json_ = { false, NULL, false, NULL };
22
23 const TTCN_JSONdescriptor_t BITSTRING_json_ = { false, NULL, false, NULL };
24
25 const TTCN_JSONdescriptor_t HEXSTRING_json_ = { false, NULL, false, NULL };
26
27 const TTCN_JSONdescriptor_t OCTETSTRING_json_ = { false, NULL, false, NULL };
28
29 const TTCN_JSONdescriptor_t CHARSTRING_json_ = { false, NULL, false, NULL };
30
31 const TTCN_JSONdescriptor_t UNIVERSAL_CHARSTRING_json_ = { false, NULL, false, NULL };
32
33 const TTCN_JSONdescriptor_t VERDICTTYPE_json_ = { false, NULL, false, NULL };
34
35 const TTCN_JSONdescriptor_t GeneralString_json_ = { false, NULL, false, NULL };
36
37 const TTCN_JSONdescriptor_t NumericString_json_ = { false, NULL, false, NULL };
38
39 const TTCN_JSONdescriptor_t UTF8String_json_ = { false, NULL, false, NULL };
40
41 const TTCN_JSONdescriptor_t PrintableString_json_ = { false, NULL, false, NULL };
42
43 const TTCN_JSONdescriptor_t UniversalString_json_ = { false, NULL, false, NULL };
44
45 const TTCN_JSONdescriptor_t BMPString_json_ = { false, NULL, false, NULL };
46
47 const TTCN_JSONdescriptor_t GraphicString_json_ = { false, NULL, false, NULL };
48
49 const TTCN_JSONdescriptor_t IA5String_json_ = { false, NULL, false, NULL };
50
51 const TTCN_JSONdescriptor_t TeletexString_json_ = { false, NULL, false, NULL };
52
53 const TTCN_JSONdescriptor_t VideotexString_json_ = { false, NULL, false, NULL };
54
55 const TTCN_JSONdescriptor_t VisibleString_json_ = { false, NULL, false, NULL };
56
57 const TTCN_JSONdescriptor_t ASN_NULL_json_ = { false, NULL, false, NULL };
58
59 const TTCN_JSONdescriptor_t OBJID_json_ = { false, NULL, false, NULL };
60
61 const TTCN_JSONdescriptor_t ASN_ROID_json_ = { false, NULL, false, NULL };
62
63 const TTCN_JSONdescriptor_t ASN_ANY_json_ = { false, NULL, false, NULL };
64
65 const TTCN_JSONdescriptor_t ENUMERATED_json_ = { false, NULL, false, NULL };
This page took 0.031319 seconds and 5 git commands to generate.