py2cpp.hpp
Go to the documentation of this file.
1 #ifndef __sobec_py2cpp__
2 #define __sobec_py2cpp__
3 
4 #include <boost/smart_ptr.hpp>
5 #include <crocoddyl/core/fwd.hpp>
6 #include <sobec/fwd.hpp>
7 
8 namespace sobec {
9 typedef boost::shared_ptr<crocoddyl::ShootingProblem> ShootingProblemPtr;
10 typedef boost::shared_ptr<sobec::MPCWalk> MPCWalkPtr;
11 
12 ShootingProblemPtr initShootingProblem(const char* fileName);
13 MPCWalkPtr initMPCWalk(const char* fileName);
14 bool reprProblem(ShootingProblemPtr problem);
15 
16 } // namespace sobec
17 
18 #endif // #ifndef __sobec_py2cpp__
sobec::reprProblem
bool reprProblem(ShootingProblemPtr problem)
Definition: py2cpp.cpp:34
fwd.hpp
sobec::initMPCWalk
MPCWalkPtr initMPCWalk(const char *fileName)
Definition: py2cpp.cpp:21
sobec::initShootingProblem
ShootingProblemPtr initShootingProblem(const char *fileName)
Definition: py2cpp.cpp:9
sobec::ShootingProblemPtr
boost::shared_ptr< crocoddyl::ShootingProblem > ShootingProblemPtr
Definition: py2cpp.hpp:9
sobec
Definition: activation-quad-ref.hpp:19
sobec::MPCWalkPtr
boost::shared_ptr< sobec::MPCWalk > MPCWalkPtr
Definition: py2cpp.hpp:10