mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-04 19:04:56 +11:00
14 lines
329 B
C++
14 lines
329 B
C++
#include "xdgshell.hpp"
|
|
|
|
#include <qwaylandclientextension.h>
|
|
|
|
namespace qs::wayland::xdg_shell {
|
|
|
|
XdgWmBase::XdgWmBase(): QWaylandClientExtensionTemplate(6) { this->initialize(); }
|
|
|
|
XdgWmBase* XdgWmBase::instance() {
|
|
static auto* instance = new XdgWmBase(); // NOLINT
|
|
return instance;
|
|
}
|
|
|
|
} // namespace qs::wayland::xdg_shell
|