pysiderephandler_p.h 710 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Copyright (C) 2025 Ford Motor Company
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. #ifndef PYSIDE_REPHANDLER_P_H
  4. #define PYSIDE_REPHANDLER_P_H
  5. #include <sbkpython.h>
  6. #include <QtRemoteObjects/repparser.h>
  7. #include <QtCore/qstringlist.h>
  8. struct PySideRepFilePrivate
  9. {
  10. AST ast;
  11. PyObject *podDict{};
  12. PyObject *replicaDict{};
  13. PyObject *sourceDict{};
  14. QStringList classes;
  15. QStringList pods;
  16. };
  17. extern "C"
  18. {
  19. extern PyTypeObject *PySideRepFile_TypeF(void);
  20. // Internal object
  21. struct PySideRepFile
  22. {
  23. PyObject_HEAD
  24. PySideRepFilePrivate *d;
  25. };
  26. }; // extern "C"
  27. #endif // PYSIDE_REPHANDLER_P_H