mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
7618fb42fb
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668932 13f79535-47bb-0310-9956-ffa450edef68
20 lines
367 B
Thrift
Executable File
20 lines
367 B
Thrift
Executable File
#!/usr/local/bin/thrift --gen cpp --gen java --gen py --php --xsd --perl
|
|
|
|
/**
|
|
* This Thrift file can be included by other Thrift files that want to share
|
|
* these definitions.
|
|
*/
|
|
|
|
namespace cpp shared
|
|
namespace java shared
|
|
namespace perl shared
|
|
|
|
struct SharedStruct {
|
|
1: i32 key
|
|
2: string value
|
|
}
|
|
|
|
service SharedService {
|
|
SharedStruct getStruct(1: i32 key)
|
|
}
|