9 lines
217 B
C++
9 lines
217 B
C++
|
#include <boost/python.hpp>
|
||
|
#include "gtsam/base/DerivedValue.h"
|
||
|
|
||
|
using namespace boost::python;
|
||
|
using namespace gtsam;
|
||
|
|
||
|
/*void exportDerivedValue(){
|
||
|
class_<DerivedValue, bases<Value> >("DerivedValue", no_init);
|
||
|
}*/
|