SceneSwitcher/plugins/http/http-server-tab.hpp
WarmUpTill 088881b674
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
Add HTTP condition
2026-04-02 17:26:16 +02:00

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