mirror of
https://github.com/hyprwm/hyprland-qtutils.git
synced 2024-12-26 22:19:50 +01:00
10 lines
144 B
C++
10 lines
144 B
C++
|
#include "Dialog.hpp"
|
||
|
|
||
|
CDialog::CDialog(QObject* parent) : QObject(parent) {
|
||
|
;
|
||
|
}
|
||
|
|
||
|
void CDialog::onButtonPress(QString buttonName) {
|
||
|
;
|
||
|
}
|