mirror of
https://github.com/gtalent/sc9k.git
synced 2025-01-23 06:13:36 -06:00
22 lines
305 B
C++
22 lines
305 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include "obsclient.hpp"
|
|
#include "openlpclient.hpp"
|
|
|
|
class MainWindow: public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
private:
|
|
OBSClient m_obsClient;
|
|
OpenLPClient m_openlpClient;
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
private slots:
|
|
|
|
};
|