mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-09 02:35:49 -05:00
Some checks are pending
debian-build / build (push) Waiting to run
Check locale / ubuntu64 (push) Waiting to run
Push to master / Check Formatting 🔍 (push) Waiting to run
Push to master / Build Project 🧱 (push) Waiting to run
Push to master / Create Release 🛫 (push) Blocked by required conditions
21 lines
301 B
C++
21 lines
301 B
C++
#pragma once
|
|
#include "resource-table.hpp"
|
|
|
|
namespace advss {
|
|
|
|
class HttpServersTable final : public ResourceTable {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static HttpServersTable *Create();
|
|
|
|
private slots:
|
|
void Add();
|
|
void Remove();
|
|
|
|
private:
|
|
HttpServersTable(QTabWidget *parent = nullptr);
|
|
};
|
|
|
|
} // namespace advss
|