18 #ifndef __tsid_python_HQPOutput_hpp__ 19 #define __tsid_python_HQPOutput_hpp__ 31 :
public boost::python::def_visitor<HQPOutputPythonVisitor<T> > {
32 template <
class PyClass>
35 cl.def(bp::init<>(
"Default Constructor"))
36 .def(bp::init<int, int, int>((bp::args(
"nVars",
"nEq",
"nInCon"))))
40 static Eigen::VectorXd
x(
const T&
self) {
return self.x; }
41 static int status(
const T&
self) {
return self.status; }
42 static void expose(
const std::string& class_name) {
43 std::string doc =
"HQPOutput info.";
44 bp::class_<T>(class_name.c_str(), doc.c_str(), bp::no_init)
51 #endif // ifndef __tsid_python_HQPOutput_hpp__
void def(const char *name, Func func)
static void expose(const std::string &class_name)
static int status(const T &self)
static Eigen::VectorXd x(const T &self)
void visit(PyClass &cl) const