security-context: implement protocol

fixes #7318
This commit is contained in:
Vaxry 2024-10-06 14:07:07 +01:00
parent 0c7a7e2d56
commit da86aac0f5
10 changed files with 374 additions and 1 deletions

View file

@ -40,3 +40,7 @@ IWaylandProtocol::~IWaylandProtocol() {
void IWaylandProtocol::removeGlobal() {
wl_global_remove(m_pGlobal);
}
wl_global* IWaylandProtocol::getGlobal() {
return m_pGlobal;
}