blob: 4fc87bdc98304dab1ca05d9f95bb4ded5597d281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module TestIceSpider {
class SomeModel {
string value;
};
interface TestApi {
SomeModel index();
SomeModel withParams(string s, int i);
void returnNothing(string s);
void complexParam(string s, SomeModel m);
};
};
|