summaryrefslogtreecommitdiff
path: root/icespider/unittests/test-api.ice
blob: ff43dc22c9ab4768ec7d04160bdf9b23fd8e7ed1 (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(optional(0) string s, SomeModel m);
	};
};