blob: 987878041c8aae04e2320158521885abf124c4f1 [file] [log] [blame]
Steven Moreland7b680eb2017-04-19 16:34:26 -07001#ifndef HIDL_TEST_H_
2#define HIDL_TEST_H_
3
4#define EACH_SERVER(THING) \
5do { \
6 THING<IMemoryTest>("memory"); \
7 THING<IChild>("child"); \
8 THING<IParent>("parent"); \
9 THING<IFetcher>("fetcher"); \
10 THING<IBar>("foo"); \
11 THING<IHash>("default"); \
12 THING<IGraph>("graph"); \
13 THING<IPointer>("pointer"); \
14} while(false)
15
16#endif // HIDL_TEST_H_