Add LinuxSystemDriver and WaylandSystemDriver classes

This commit is contained in:
2025-03-28 14:57:38 +10:00
parent f727261a84
commit 211eb9a1d6
10 changed files with 97 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
/**
* Copyright (c) 2025, Jayden Grubb <contact@jaydengrubb.com>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "drivers/linux/wayland/system_driver.h"
#include <nova/core/debug.h>
using namespace Nova;
WaylandSystemDriver::WaylandSystemDriver() {
NOVA_AUTO_TRACE();
}
WaylandSystemDriver::~WaylandSystemDriver() {
NOVA_AUTO_TRACE();
}