feature_select.h 472 B

12345678910111213141516171819
  1. // Copyright (C) 2020 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. #ifndef FEATURE_SELECT_H
  4. #define FEATURE_SELECT_H
  5. #include "pysidemacros.h"
  6. #include <sbkpython.h>
  7. namespace PySide::Feature {
  8. PYSIDE_API void init();
  9. PYSIDE_API void Select(PyObject *obj);
  10. PYSIDE_API void Select(PyTypeObject *type);
  11. PYSIDE_API void Enable(bool);
  12. } // namespace PySide::Feature
  13. #endif // FEATURE_SELECT_H