43void rpp::CoreV2::setup_python() {
46 bp::class_<rpp::CoreV2, rpp::CoreV2Ptr, boost::noncopyable>(
"CoreV2", bp::init<bool, bool, bool>())
47 .def(
"transport", &rpp::CoreV2::transport)
48 .def(
"application", &rpp::CoreV2::application)
49 .def(
"getDropCount", &rpp::CoreV2::getDropCount);
54rpp::CoreV2::CoreV2(
bool enIbCrc,
bool enObCrc,
bool enSsi) {
55 tran_ = rpp::Transport::create();
56 cntl_ = rpp::ControllerV2::create(enIbCrc, enObCrc, enSsi, tran_, app_);
58 tran_->setController(cntl_);