blob: 51740f75c7f8c9c42c6cdc40ec3de2b2c9787c32 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright 2021-2022 The WarpX Community
*
* This header is used to centrally define classes that shall not violate the
* C++ one-definition-rule (ODR) for various Python translation units.
*
* Authors: Axel Huebl
* License: BSD-3-Clause-LBNL
*/
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <pybind11/stl_bind.h>
#include <pybind11/functional.h>
#include <pybind11/numpy.h>
#include <list>
namespace py = pybind11;
//using namespace warpx;
// PYBIND11_MAKE_OPAQUE(std::list<...>)
|