mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 12:15:09 -05:00
14 lines
312 B
C++
14 lines
312 B
C++
#ifndef ZAMALANG_PYTHON_COMPILER_API_MODULE_H
|
|
#define ZAMALANG_PYTHON_COMPILER_API_MODULE_H
|
|
|
|
#include <pybind11/pybind11.h>
|
|
|
|
namespace zamalang {
|
|
namespace python {
|
|
|
|
void populateCompilerAPISubmodule(pybind11::module &m);
|
|
|
|
} // namespace python
|
|
} // namespace zamalang
|
|
|
|
#endif // ZAMALANG_PYTHON_DIALECTMODULES_H
|