Line |
Branch |
Exec |
Source |
1 |
|
|
// Copyright (c) 2015-2018, CNRS |
2 |
|
|
// Authors: Justin Carpentier <jcarpent@laas.fr> |
3 |
|
|
// |
4 |
|
|
#ifndef __multicontact_api_python_scenario_expose_scenario_hpp__ |
5 |
|
|
#define __multicontact_api_python_scenario_expose_scenario_hpp__ |
6 |
|
|
|
7 |
|
|
namespace multicontact_api { |
8 |
|
|
namespace python { |
9 |
|
|
|
10 |
|
|
void exposeContactPatch(); |
11 |
|
|
void exposeContactPhase(); |
12 |
|
|
void exposeContactSequence(); |
13 |
|
|
void exposeScenarioEnums(); |
14 |
|
|
void exposeContactModels(); |
15 |
|
|
|
16 |
|
3 |
inline void exposeScenario() { |
17 |
|
3 |
exposeScenarioEnums(); |
18 |
|
3 |
exposeContactModels(); |
19 |
|
3 |
exposeContactPatch(); |
20 |
|
3 |
exposeContactPhase(); |
21 |
|
3 |
exposeContactSequence(); |
22 |
|
3 |
} |
23 |
|
|
|
24 |
|
|
} // namespace python |
25 |
|
|
} // namespace multicontact_api |
26 |
|
|
|
27 |
|
|
#endif // ifndef __multicontact_api_python_scenario_expose_scenario_hpp__ |
28 |
|
|
|