// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifdef HAVE_NUMPY // Include numpy first to get the proper PyArray_Check # include #endif #include "helper.h" #include "sbknumpycheck.h" #include "sbkcpptonumpy.h" #include "sbknumpyview.h" #include namespace Shiboken::Numpy { bool check(PyObject *pyIn) { #ifdef HAVE_NUMPY return PyArray_Check(pyIn); #else SBK_UNUSED(pyIn); return false; #endif } } //namespace Shiboken::Numpy // Include all sources files using numpy so that they are in the same // translation unit (see comment at initNumPyArrayConverters()). #include "sbknumpyview.cpp" #include "sbkcpptonumpy.cpp" #ifdef HAVE_NUMPY # include "sbknumpyarrayconverter.cpp" #endif