blob: 4bfbbdffb4a1178e229276099eb29374e0adacfc (
plain) (
blame)
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 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
*/
#ifndef WARPX_PYWARPX_H_
#define WARPX_PYWARPX_H_
#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<...>)
#endif // WARPX_PYWARPX_H_
|