2020-01-17 14:22:08 +01:00
|
|
|
#pragma once
|
|
|
|
#include <pybind11/pybind11.h>
|
2020-02-28 03:19:47 +01:00
|
|
|
#include <pybind11/stl.h>
|
2020-01-17 14:22:08 +01:00
|
|
|
|
2020-02-28 10:50:33 +01:00
|
|
|
#include <nonstd/optional.hpp>
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
2020-01-17 14:22:08 +01:00
|
|
|
namespace py = pybind11;
|
|
|
|
|
2020-02-28 03:19:47 +01:00
|
|
|
namespace pybind11
|
|
|
|
{
|
|
|
|
namespace detail
|
|
|
|
{
|
2020-02-28 10:50:33 +01:00
|
|
|
|
|
|
|
template <typename Key, typename Value, typename Hash, typename Equal, typename Alloc> struct type_caster<std::unordered_multimap<Key, Value, Hash, Equal, Alloc>>
|
|
|
|
: map_caster<std::unordered_multimap<Key, Value, Hash, Equal, Alloc>, Key, Value> { };
|
|
|
|
|
|
|
|
|
2020-02-28 03:19:47 +01:00
|
|
|
template<typename T>
|
|
|
|
struct type_caster<nonstd::optional<T>>
|
|
|
|
: public optional_caster<nonstd::optional<T>> {};
|
|
|
|
|
2020-02-28 10:50:33 +01:00
|
|
|
/*
|
2020-02-28 03:19:47 +01:00
|
|
|
template <typename CharT, class Traits>
|
|
|
|
struct type_caster<simple_string_view>
|
|
|
|
: string_caster<simple_string_view, true> {};
|
2020-02-28 10:50:33 +01:00
|
|
|
*/
|
2020-02-28 03:19:47 +01:00
|
|
|
|
|
|
|
} // namespace pybind11::detail
|
|
|
|
} // namespace pybind11
|
2020-02-28 10:50:33 +01:00
|
|
|
|
2020-02-28 03:19:47 +01:00
|
|
|
|
2020-01-17 14:22:08 +01:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
void
|
|
|
|
Context_Init(py::module &mod);
|
|
|
|
|
2020-01-17 16:06:08 +01:00
|
|
|
void
|
|
|
|
CryptoTypes_Init(py::module &mod);
|
|
|
|
|
2020-01-17 14:22:08 +01:00
|
|
|
void
|
|
|
|
RouterContact_Init(py::module &mod);
|
|
|
|
|
2020-02-27 23:05:25 +01:00
|
|
|
void
|
|
|
|
Config_Init(py::module & mod);
|
|
|
|
|
2020-02-28 17:29:15 +01:00
|
|
|
namespace handlers
|
|
|
|
{
|
|
|
|
void
|
|
|
|
PyHandler_Init(py::module & mod);
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
void
|
|
|
|
Address_Init(py::module &mod);
|
|
|
|
}
|
|
|
|
|
2020-01-17 14:22:08 +01:00
|
|
|
} // namespace llarp
|
2020-02-27 22:30:45 +01:00
|
|
|
|
|
|
|
namespace tooling
|
|
|
|
{
|
|
|
|
void
|
|
|
|
RouterHive_Init(py::module & mod);
|
2020-02-28 03:19:47 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
RouterEvent_Init(py::module & mod);
|
|
|
|
}
|