Subversion Repositories SmartDukaan

Rev

Rev 30 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 ashish 1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one
3
 * or more contributor license agreements. See the NOTICE file
4
 * distributed with this work for additional information
5
 * regarding copyright ownership. The ASF licenses this file
6
 * to you under the Apache License, Version 2.0 (the
7
 * "License"); you may not use this file except in compliance
8
 * with the License. You may obtain a copy of the License at
9
 *
10
 *   http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing,
13
 * software distributed under the License is distributed on an
14
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
 * KIND, either express or implied. See the License for the
16
 * specific language governing permissions and limitations
17
 * under the License.
18
 */
19
 
20
namespace cpp yozone
21
 
22
struct thing {
23
  1: i32 hello,
24
  2: i32 goodbye
25
}
26
 
27
enum enumconstants {
28
  ONE = 1,
29
  TWO = 2
30
}
31
 
32
struct thing2 {
33
  /** standard docstring */
34
  1: enumconstants val = TWO
35
}
36
 
37
typedef i32 myIntType
38
const myIntType myInt = 3
39
 
40
const map<enumconstants,string> GEN_ENUM_NAMES = {ONE : "HOWDY", TWO: PARTNER}
41
 
42
const i32 hex_const = 0x0001F
43
 
44
const i32 GEN_ME = -3523553
45
const double GEn_DUB = 325.532
46
const double GEn_DU = 085.2355
47
const string GEN_STRING = "asldkjasfd"
48
 
49
const map<i32,i32> GEN_MAP = { 35532 : 233, 43523 : 853 }
50
const list<i32> GEN_LIST = [ 235235, 23598352, 3253523 ]
51
 
52
const map<i32, map<i32, i32>> GEN_MAPMAP = { 235 : { 532 : 53255, 235:235}}
53
 
54
const map<string,i32> GEN_MAP2 = { "hello" : 233, "lkj98d" : 853, 'lkjsdf' : 098325 }
55
 
56
const thing GEN_THING = { 'hello' : 325, 'goodbye' : 325352 }
57
 
58
const map<i32,thing> GEN_WHAT = { 35 : { 'hello' : 325, 'goodbye' : 325352 } }
59
 
60
const set<i32> GEN_SET = [ 235, 235, 53235 ]
61
 
62
exception Blah {
63
  1:  i32 bing }
64
 
65
exception Gak {}
66
 
67
service yowza {
68
  void blingity(),
69
  i32 blangity() throws (1: Blah hoot )
70
}