mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 09:54:54 -05:00
21 lines
301 B
C++
21 lines
301 B
C++
#pragma once
|
|
#include "resource-table.hpp"
|
|
|
|
namespace advss {
|
|
|
|
class ActionQueueTable final : public ResourceTable {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static ActionQueueTable *Create();
|
|
|
|
private slots:
|
|
void Add();
|
|
void Remove();
|
|
|
|
private:
|
|
ActionQueueTable(QTabWidget *parent = nullptr);
|
|
};
|
|
|
|
} // namespace advss
|