mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-24 13:07:44 +00:00
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.
12 lines
No EOL
237 B
C++
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();
|
|
}; |