mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
885c679123
Client: compiler general Patch: Dave Watson This closes #113 commit 52b99af4ee1574253dcb77933d76a7ebb2d830df Author: Dave Watson <davejwatson@fb.com> Date: 2014-04-23T20:05:56Z change cpp.ref to & commit 3f9d31cc6140367529fd8f7b1b67056ec321786f Author: Dave Watson <davejwatson@fb.com> Date: 2014-04-23T21:50:29Z Recursion depth limit commit 61468e4534ce9e6a4f4f643bfd00542d13600d83 Author: Dave Watson <davejwatson@fb.com> Date: 2014-04-25T19:59:18Z shared_ptr for reference type
48 lines
1.1 KiB
Thrift
48 lines
1.1 KiB
Thrift
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
struct RecTree {
|
|
1: list<RecTree> children
|
|
2: i16 item
|
|
}
|
|
|
|
struct RecList {
|
|
1: RecList & nextitem
|
|
3: i16 item
|
|
}
|
|
|
|
struct CoRec {
|
|
1: CoRec2 & other
|
|
}
|
|
|
|
struct CoRec2 {
|
|
1: CoRec other
|
|
}
|
|
|
|
struct VectorTest {
|
|
1: list<RecList> lister;
|
|
}
|
|
|
|
service TestService
|
|
{
|
|
RecTree echoTree(1:RecTree tree)
|
|
RecList echoList(1:RecList lst)
|
|
CoRec echoCoRec(1:CoRec item)
|
|
}
|