blob: 6bc142c3cce432b30db833f980d46d48bf5bf7cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MULTI_THREADING_EXAMPLE_H
#define MULTI_THREADING_EXAMPLE_H
enum EnumMultiThreadingExampleTypes
{
SINGLE_SIM_THREAD = 0,
};
class CommonExampleInterface* MultiThreadingExampleCreateFunc(struct CommonExampleOptions& options);
#endif //MULTI_THREADING_EXAMPLE_H
|