blob: 2bd6e3d5d75fe82f631882498b7acdcba3ef46e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef LOCOMOTORPRIMITIVES_MANAGER_H_
#define LOCOMOTORPRIMITIVES_MANAGER_H_
#include "OpenSim/OpenSim.h"
class LocomotorPrimitivesManager : public OpenSim::Manager
{
public:
LocomotorPrimitivesManager(OpenSim::Model &model, SimTK::Integrator &integrator)
: OpenSim::Manager(model, integrator) { }
bool doIntegration(SimTK::State &s, int step, double dtFirst);
};
#endif /* LOCOMOTORPRIMITIVES_MANAGER_H_ */
|