oxen-pyoxenmq/src/common.hpp
Jason Rhinelander a98722a7da pyoxenmq overhaul
- Wrap much more of the OxenMQ
- Add extensive pydoc to everything
- Switch setup.py to pybind's built-in tools
2021-10-21 22:23:02 -03:00

14 lines
225 B
C++

#pragma once
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <pybind11/functional.h>
namespace py = pybind11;
namespace oxenmq {
void OxenMQ_Init(py::module &mod);
void BEncode_Init(py::module & mod);
}