59b62db0fd1eb339807bbb1a4d383088a068061c
[deliverable/titan.core.git] / core / JSON.cc
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 #include "JSON.hh"
9
10 // JSON descriptors for base types
11 const TTCN_JSONdescriptor_t INTEGER_json_ = { false, NULL, false, NULL };
12
13 const TTCN_JSONdescriptor_t FLOAT_json_ = { false, NULL, false, NULL };
14
15 const TTCN_JSONdescriptor_t BOOLEAN_json_ = { false, NULL, false, NULL };
16
17 const TTCN_JSONdescriptor_t BITSTRING_json_ = { false, NULL, false, NULL };
18
19 const TTCN_JSONdescriptor_t HEXSTRING_json_ = { false, NULL, false, NULL };
20
21 const TTCN_JSONdescriptor_t OCTETSTRING_json_ = { false, NULL, false, NULL };
22
23 const TTCN_JSONdescriptor_t CHARSTRING_json_ = { false, NULL, false, NULL };
24
25 const TTCN_JSONdescriptor_t UNIVERSAL_CHARSTRING_json_ = { false, NULL, false, NULL };
26
27 const TTCN_JSONdescriptor_t VERDICTTYPE_json_ = { false, NULL, false, NULL };
28
29 const TTCN_JSONdescriptor_t GeneralString_json_ = { false, NULL, false, NULL };
30
31 const TTCN_JSONdescriptor_t NumericString_json_ = { false, NULL, false, NULL };
32
33 const TTCN_JSONdescriptor_t UTF8String_json_ = { false, NULL, false, NULL };
34
35 const TTCN_JSONdescriptor_t PrintableString_json_ = { false, NULL, false, NULL };
36
37 const TTCN_JSONdescriptor_t UniversalString_json_ = { false, NULL, false, NULL };
38
39 const TTCN_JSONdescriptor_t BMPString_json_ = { false, NULL, false, NULL };
40
41 const TTCN_JSONdescriptor_t GraphicString_json_ = { false, NULL, false, NULL };
42
43 const TTCN_JSONdescriptor_t IA5String_json_ = { false, NULL, false, NULL };
44
45 const TTCN_JSONdescriptor_t TeletexString_json_ = { false, NULL, false, NULL };
46
47 const TTCN_JSONdescriptor_t VideotexString_json_ = { false, NULL, false, NULL };
48
49 const TTCN_JSONdescriptor_t VisibleString_json_ = { false, NULL, false, NULL };
This page took 0.067542 seconds and 4 git commands to generate.