SceneSwitcher/plugins/twitch/twitch-tab.hpp
2024-05-01 19:44:57 +02:00

21 lines
319 B
C++

#pragma once
#include "resource-table.hpp"
namespace advss {
class TwitchConnectionsTable final : public ResourceTable {
Q_OBJECT
public:
static TwitchConnectionsTable *Create();
private slots:
void Add();
void Remove();
private:
TwitchConnectionsTable(QTabWidget *parent = nullptr);
};
} // namespace advss