diff options
author | Robert Griebl <[email protected]> | 2025-02-23 02:39:05 +0100 |
---|---|---|
committer | Robert Griebl <[email protected]> | 2025-06-06 15:27:52 +0200 |
commit | 6408f5a017ef3d1328a8e4a4a8e9c65fe9e90e07 (patch) | |
tree | c16ac74831dadfc289ebe44a3950e29472b82b97 /src/plugin-interfaces/containerinterface.h | |
parent | 14986b7c2f700d15303c5ee425f98943b36f3d73 (diff) |
We had to bump the plugin iid for the stop() change, so now's the
perfect time to extend the Helpers API.
Change-Id: I3070bbb12c721027594d629311f67890c6924696
Pick-to: 6.10
Reviewed-by: Dominik Holland <[email protected]>
Diffstat (limited to 'src/plugin-interfaces/containerinterface.h')
-rw-r--r-- | src/plugin-interfaces/containerinterface.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugin-interfaces/containerinterface.h b/src/plugin-interfaces/containerinterface.h index f64ece4b..4bfb3a19 100644 --- a/src/plugin-interfaces/containerinterface.h +++ b/src/plugin-interfaces/containerinterface.h @@ -104,6 +104,10 @@ public: // added in 6.10: virtual int watchdogSignal() = 0; + + // these two will throw std::exceptions on error: + virtual QString checkDBusSocketPath(const QString &dbusAddress, const QByteArray &typeHint) = 0; + virtual QString checkWaylandSocketPath(const QString &xdgRuntimeDir, const QString &waylandDisplay) = 0; }; class ContainerManagerInterface |