mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-01 15:49:51 +08:00
11 lines
191 B
C++
11 lines
191 B
C++
#pragma once
|
|
|
|
#include <QPushButton>
|
|
|
|
class DelButton : public QPushButton {
|
|
public:
|
|
inline DelButton(QModelIndex index_) : QPushButton(), index(index_) {}
|
|
|
|
QPersistentModelIndex index;
|
|
};
|