forked from jupyter-xeus/xeus-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxkernel.hpp
25 lines (19 loc) · 932 Bytes
/
xkernel.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/***************************************************************************
* Copyright (c) 2018, Martin Renou, Johan Mabille, Sylvain Corlay, and *
* Wolf Vollprecht *
* Copyright (c) 2018, QuantStack *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
#ifndef XPYT_KERNEL_HPP
#define XPYT_KERNEL_HPP
#include "pybind11/pybind11.h"
namespace py = pybind11;
namespace xpyt
{
py::module get_kernel_module(bool raw_mode = false);
py::module get_request_context_module();
}
#endif