Rework variable tab to use tab helpers

This commit is contained in:
WarmUpTill
2024-04-26 21:48:38 +02:00
committed by WarmUpTill
parent a6bcce5a63
commit 966b389807
6 changed files with 154 additions and 317 deletions

View File

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