You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
593 B
17 lines
593 B
#ifndef HIDL_TEST_H_ |
|
#define HIDL_TEST_H_ |
|
|
|
#define EACH_SERVER(THING) \ |
|
do { \ |
|
THING<IMemoryTest>("memory"); \ |
|
THING<IChild>("child"); \ |
|
THING<IParent>("parent"); \ |
|
THING<IFetcher>("fetcher"); \ |
|
THING<IBar>("foo"); \ |
|
THING<IHash>("default"); \ |
|
THING<IGraph>("graph"); \ |
|
THING<IPointer>("pointer"); \ |
|
THING<IMultithread>("multithread"); \ |
|
} while (false) |
|
|
|
#endif // HIDL_TEST_H_
|