diff options
| author | Brett Stottlemyer <bstottle@ford.com> | 2024-12-18 10:33:56 -0500 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2025-03-13 16:28:42 +0100 |
| commit | 19abd816e73bebdd489408d0a3b7676822bff39c (patch) | |
| tree | 8459ae9401f5e190995b3e24b6ae6968cf457baf /sources/pyside6/libpysideremoteobjects/pysideremoteobjects.h | |
| parent | 3c66c456aeab597b7cb046f81c7f015433bb57a4 (diff) | |
Make Remote Objects usable beyond Models
While present, the Qt Remote Objects bindings to Python have not been
very useful. The only usable components were those based on
QAbstractItemModel, due to the lack of a way to interpret .rep files
from Python. This addresses that limitation.
Fixes: PYSIDE-862
Change-Id: Ice57c0c64f11c3c7e74d50ce3c48617bd9b422a3
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Reviewed-by: Brett Stottlemyer <brett.stottlemyer@gmail.com>
Diffstat (limited to 'sources/pyside6/libpysideremoteobjects/pysideremoteobjects.h')
| -rw-r--r-- | sources/pyside6/libpysideremoteobjects/pysideremoteobjects.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sources/pyside6/libpysideremoteobjects/pysideremoteobjects.h b/sources/pyside6/libpysideremoteobjects/pysideremoteobjects.h new file mode 100644 index 000000000..e0828c960 --- /dev/null +++ b/sources/pyside6/libpysideremoteobjects/pysideremoteobjects.h @@ -0,0 +1,16 @@ +// Copyright (C) 2025 Ford Motor Company +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only + +#ifndef PYSIDEREMOTEOBJECTS_H +#define PYSIDEREMOTEOBJECTS_H + +#include <sbkpython.h> + +namespace PySide::RemoteObjects +{ + +void init(PyObject *module); + +} // namespace PySide::RemoteObjects + +#endif // PYSIDEREMOTEOBJECTS_H |
