1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 13:07:44 +00:00
novus/common/include/novusmainwindow.h
Joshua Goins 90ab618a36 common: Introduce NovusMainWindow
This consolidates the bunch of duplicated code we have in a bunch of
SDK applications. It sets up standard stuff like the menu bar, etc.
2023-10-10 18:09:01 -04:00

12 lines
No EOL
237 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QMainWindow>
class NovusMainWindow : public QMainWindow
{
public:
explicit NovusMainWindow();
};